Advertisement
VelenoAlpha

Untitled

Aug 28th, 2015
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. rsb: function(arg, user, room){
  2. if (toId(user) !== 'rainveleno') return false;
  3. if (!arg) return false
  4. text = '/declare Roserade Sludge Bombs '+arg+' out of the room.';
  5. this.say(room,text);
  6. this.say(room,'/kick '+arg);
  7. },
  8. ls: function(arg, user, room){
  9. if (toId(user) !== 'rainveleno') return false;
  10. if (!arg) return false
  11. text = '/declare Roserade uses leaf storm and defeats '+arg+'.';
  12. this.say(room,text);
  13. this.say(room,'/roomban '+arg);
  14. },
  15. es: function(arg, user, room){
  16. if (toId(user) !== 'rainveleno') return false;
  17. if (!arg) return false
  18. text = '/declare Roserade uses extrasensory and flinches '+arg+'.';
  19. this.say(room,text);
  20. this.say(room,'/mute '+arg);
  21. },
  22. mr: function(arg, user, room){
  23. if (toId(user) !== 'rainveleno') return false;
  24. if (!arg) return false
  25. text = '/declare Roserade mega evolves and uses Light of Ruin aganist '+arg+' .';
  26. this.say(room,text);
  27. this.say(room,'/kick '+arg);
  28. },
  29. bo: function(arg, user, room){
  30. if (toId(user) !== 'rainveleno') return false;
  31. if (!arg) return false
  32. text = '/declare Rain Veleno uses boomburst and '+arg+' disappears.';
  33. this.say(room,text);
  34. this.say(room,'/kick '+arg);
  35. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement