3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-03 17:39:28 +01:00
This commit is contained in:
Luke Slater 2011-08-25 15:47:06 +01:00
parent 8e1d4d5722
commit 7c023104e3
2 changed files with 3 additions and 4 deletions

View File

@ -4,8 +4,7 @@ var getAJob = function(dbot) {
return {
'listener': function(data) {
var num = Math.floor(Math.random()*101);
console.log(num);
if(num == 50 || data.message.indexOf('bored') !== -1) {
if(num == 50) {
dbot.say(data.channel, data.user + ': Get a job!');
}
},

View File

@ -3,8 +3,8 @@ var youAre = function(dbot) {
return {
'listener': function(data) {
var num = Math.floor(Math.random()*6);
var key = data.message.match(/(is|are) ([\d\w\s']*)(,|\.)?/);
var num = Math.floor(Math.random()*4);
var key = data.message.match(/(is|are) ([\d\w\s']*)/);
if(num == 1 && key != undefined) {
if(key[2].indexOf('and') !== -1) {