dbot/modules-stock/youare/youare.js
Georg 70a21d2b18
Signed-off-by: Georg <georg@lysergic.dev>
Init

- Initial fixes in modules
- Bundled adapted jsbot
- Elaborative README.md
2021-08-24 21:16:26 +02:00

15 lines
442 B
JavaScript

var youAre = function(dbot) {
this.listener = function(event) {
var key = event.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5);
if(key && key[2] != "" && (Math.floor(Math.random() * (101)) / 1) == 1) {
event.reply(event.user + ': You\'re ' + key[2] + '.');
}
}.bind(this);
this.on = 'PRIVMSG';
};
exports.fetch = function(dbot) {
return new youAre(dbot);
};