> For the complete documentation index, see [llms.txt](https://tdhandler.js.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tdhandler.js.org/handling-files/events.md).

# Events

The properties an event-file can have

**File structure:**\
Events Folder\
-> Event File

```javascript
module.exports = {
    // The event-name
    name: "messageCreate",
    // Wherther the event fires once or always
    once: false,
    // This allows you to ignore the file in the loading process
    ignoreLoading: false,
    
    // The code to run that event
    run: message => {
        if (message.author.bot) return;
        message.reply("Whoa that's an insane event");
    }
}
```
