Advertisement
sparkychild

Untitled

Apr 28th, 2015
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. if (msg.toLowerCase().indexOf(toId(config.nick)) > -1 && toId(by) !== toId(config.nick)) {
  2. if (/^\/me/i.test(msg) && user !== botName) {
  3. if (/pets* /i.test(msg)) { this.say(connection, room, '/me purr'); return;}
  4. if (/hugs* /i.test(msg)) { this.say(connection, room, '/me licks ' + by + ' and smiles cutely'); return;}
  5. if (/cuddles* /i.test(msg)) { this.say(connection, room, '/me cuddles ' + by + '. ♥ ^_^ ♥'); return;}
  6. if (/nuzzles* /i.test(msg)) { this.say(connection, room, 'D-dont paralyze me cutie ♥ ♥ ♥'); return;}
  7.  
  8. if (/pokes* /i.test(msg)) { this.say(connection, room, '/me pokes ' + by + ' back and giggles. ♥ ^_^ ♥'); return;}
  9. if (/glomps* /i.test(msg)) { this.say(connection, room, '/me is squished'); return;}
  10. if (/snuggles* /i.test(msg)) { this.say(connection, room, '/me snuggles happily and falls asleep. zzz…'); return;}
  11. if (/sex(es)? /i.test(msg)) {
  12. var text = ['/me moans', '/me cowers in fear', '/me whimpers in pain', 'b-be gentle, senpai~', 'i-im scared...~', 'more onii-chan please~!...'];
  13. var rand = ~~(text.length * Math.random());
  14. this.say(connection, room, text[rand]);
  15. return;
  16. }
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement