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 eventrun: message => {if (message.author.bot) return;message.reply("Whoa that's an insane event"); }}