mirror of
https://github.com/reality/dbot.git
synced 2024-11-27 22:39:26 +01:00
20 lines
445 B
JavaScript
20 lines
445 B
JavaScript
|
var getAJob = function(dbot) {
|
||
|
var dbot = dbot;
|
||
|
|
||
|
return {
|
||
|
'listener': function(data) {
|
||
|
var num = Math.floor(Math.random()*101);
|
||
|
console.log(num);
|
||
|
if(num == 50 || data.message.indexOf('bored') !== -1) {
|
||
|
dbot.say(data.channel, data.user + ': Get a job!');
|
||
|
}
|
||
|
},
|
||
|
|
||
|
'on': 'PRIVMSG'
|
||
|
};
|
||
|
};
|
||
|
|
||
|
exports.fetch = function(dbot) {
|
||
|
return getAJob(dbot);
|
||
|
};
|