Appendix¶
Components and Modals¶
Lightbulb includes a component handler (and modal handler) that you can use to make processing component and modal
interactions easier than it otherwise would be using raw Hikari code. For a usage guide you should see the
documentation for the components subpackage
.
Scheduled and Repeating Tasks¶
Lightbulb supports scheduled and repeating tasks through the @Client.task
and @Loader.task
decorators. This
allows you to run logic every set interval, schedule it for a specific time, or anything else using unique triggers.
For more on this as well as a usage guide, see the documentation for the tasks module
.