forked from GitHub/dbot
kickcount
This commit is contained in:
parent
04dc901974
commit
f48da5bcb4
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user