mirror of
https://github.com/reality/dbot.git
synced 2024-11-24 04:49:25 +01:00
pick on spoony, make it dispense user comments on joining the room
This commit is contained in:
parent
62d513b8c0
commit
40015b798a
@ -3,10 +3,10 @@ var puns = function(dbot) {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
'listener': function(data) {
|
'listener': function(data) {
|
||||||
if(data.user == 'Lamp') {
|
if(data.user == 'reality') {
|
||||||
dbot.say(data.channel, dbot.db.quoteArrs.lamp.random());
|
|
||||||
} else if(data.user == 'reality') {
|
|
||||||
dbot.instance.say(data.channel, dbot.db.realiPuns.random());
|
dbot.instance.say(data.channel, dbot.db.realiPuns.random());
|
||||||
|
} else if(dbot.db.quoteArrs.hasOwnProperty(data.user.toLowerCase())) {
|
||||||
|
dbot.say(data.channel, data.user + ': ' + dbot.db.quoteArrs[data.user.toLowerCase()].random());
|
||||||
} else if(dbot.instance.inChannel(data.channel)) {
|
} else if(dbot.instance.inChannel(data.channel)) {
|
||||||
dbot.instance.say('aisbot', '.karma ' + data.user);
|
dbot.instance.say('aisbot', '.karma ' + data.user);
|
||||||
dbot.waitingForKarma = data.channel;
|
dbot.waitingForKarma = data.channel;
|
||||||
|
@ -63,7 +63,7 @@ var quotes = function(dbot) {
|
|||||||
|
|
||||||
'~d': function(data, params) {
|
'~d': function(data, params) {
|
||||||
dbot.say(data.channel, data.user + ': ' + dbot.db.quoteArrs['depressionbot'].random());
|
dbot.say(data.channel, data.user + ': ' + dbot.db.quoteArrs['depressionbot'].random());
|
||||||
},
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ var youAre = function(dbot) {
|
|||||||
'listener': function(data) {
|
'listener': function(data) {
|
||||||
var key = data.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5);
|
var key = data.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5);
|
||||||
|
|
||||||
if(key && key[2] != "" && Number.prototype.chanceIn(1, 10) && data.user != 'aisbot') {
|
if(key && key[2] != "" && (Number.prototype.chanceIn(1, 10) || data.user == 'Spoony' || data.user == 'iSpoony') && data.user != 'aisbot') {
|
||||||
dbot.say(data.channel, data.user + ': You\'re ' + key[2] + '.');
|
dbot.say(data.channel, data.user + ': You\'re ' + key[2] + '.');
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
1
run.js
1
run.js
@ -8,7 +8,6 @@ var DBot = function(dModules, quotes) {
|
|||||||
this.admin = 'reality';
|
this.admin = 'reality';
|
||||||
this.waitingForKarma = false;
|
this.waitingForKarma = false;
|
||||||
this.name = 'depressionbot';
|
this.name = 'depressionbot';
|
||||||
this.commands = {};
|
|
||||||
this.db = JSON.parse(fs.readFileSync('db.json', 'utf-8'));
|
this.db = JSON.parse(fs.readFileSync('db.json', 'utf-8'));
|
||||||
|
|
||||||
this.instance = jsbot.createJSBot(this.name, 'elara.ivixor.net', 6667, this, function() {
|
this.instance = jsbot.createJSBot(this.name, 'elara.ivixor.net', 6667, this, function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user