kickcount

This commit is contained in:
Luke Slater 2011-10-12 17:43:53 +01:00
parent 04dc901974
commit f48da5bcb4

View File

@ -9,10 +9,14 @@ var userCommands = function(dbot) {
'~kickcount': function(data, params) {
if(!dbot.db.kicks.hasOwnProperty(params[1])) {
dbot.say(data.channel, params[1] + ' has either never been kicked or does not exist.');
} else {
dbot.say(data.channel, params[1] + ' has been kicked ' + dbot.db.kicks[params[1]] + ' times and has kicked people ' + dbot.db.kickers[params[1]] + ' times.');
var kicks = '0';
}
if(!dbot.db.kickers.hasOwnProperty(params[1])) {
var kicked = '0';
}
dbot.say(data.channel, params[1] + ' has been kicked ' + kicks + ' times and has kicked people ' + kicked + ' times.');
},
'~kickstats': function(data, params) {