You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here we go. We're pushing to the final moment. This update includes the following changes below
* Added Role Create, Delete, and Update Logging.
* Added Channel Create, Delete, and Update Logging.
* Footer no longer required in message msgHandler function. You can still add it, but it will automatically add the default footer.
* Reaction Roles WOOO; For the first time in TheCodingBot history, there are reaction roles. The system is still probably in alpha stages, so if something breaks, let me know!
* Removed Version checking in bootloader. One of the dependencies was having a fit lol.
* Oh, in in the logging events, 'channel' is now 'logChannel' to clear up le confusion... thank me later.
Enjoy v5 Update 9 ^^
if(!userSettings)returnapp.functions.msgHandler(message,{embeds: [{color: app.config.system.embedColors.red,description: `${app.config.system.emotes.error} **Could not set to AFK due to missing User Settings.**`}]})
title: `${app.config.system.emotes.success} You're now AFK${((reason!="" ? ": "+reason: "!"))}`,
27
+
color: app.config.system.embedColors.lime
28
+
}],
29
+
author: message.author
30
+
},0,true,(asyncmsg=>{
31
+
setTimeout(function(){msg.delete()},6000);
32
+
}));
33
+
}else{
34
+
returnapp.functions.msgHandler(message,{embeds: [{color: app.config.system.embedColors.red,description: `${app.config.system.emotes.error} **Could not set to AFK due to Database Error!**`}]})
0 commit comments