fixing some whitespacing, and fixing the member count code

This commit is contained in:
Matt Burchett 2017-03-23 03:39:28 -05:00
parent e37e3feb39
commit 3f66a03d3f

8
bot.js
View File

@ -35,15 +35,17 @@ client.connect({
client.Dispatcher.on(Events.GATEWAY_READY, e => {
// acknoledge connection to console logs
logcon.info('Connected as: ' + client.User.username);
});
// check for the number of active users every 30 seconds and log to the active users logs
setInterval(function() {
client.Users.fetchMembers(config.guild_id);
actcon.info(config.guild_name + " Active Users: " + client.Users.onlineMembersForGuild(config.guild_id).length);}, 30000)
});
actcon.info(config.guild_name + " Active Users: " + client.Users.onlineMembersForGuild(config.guild_id).length);}, 30000);
// when messages are created
client.Dispatcher.on(Events.MESSAGE_CREATE, e => {
// log the guild name, the channel name, the username, and the message to the channels log
// log the guild name, the channel name, the username, and the message to the channels log and disable DMs.
if (!e.message.isPrivate)
chancon.info(e.message.guild.name + ":" + " #" + e.message.channel.name + ": " + "<" + e.message.displayUsername + ">: "+ e.message.content);
});