Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.11 KB | None | 0 0
  1. //Comando de bebidas e comidas
  2. this.Register("handitem", new CarryCommand());
  3. this.Register("carry" , new CarryCommand());
  4.  
  5. //Comandos de balão de chat
  6. this.Register("balao" , new BubbleCommand());
  7. this.Register("balaobot", new BubbleBotCommand());
  8.  
  9. //Comandos Novos
  10. this.Register("creu", new Creu());
  11. this.Register("beber", new Beber());
  12. this.Register("comer", new Comer());
  13. this.Register("pegar", new Pegar());
  14. this.Register("afk", new Afk());
  15. this.Register("megafone", new Megafone());
  16. this.Register("masscreu", new MassCreu());
  17. this.Register("massdance", new MassDance());
  18. this.Register("massefeito", new MassEfeito());
  19. this.Register("teleus", new TeleUser());
  20. this.Register("correr", new Correr());
  21. this.Register("atirar", new Atirar());
  22. this.Register("lajota", new Lajota());
  23. this.Register("z", new Lajota());
  24. this.Register("simbolos", new Simbolos());
  25. this.Register("ayuda", new Ajuda());
  26. this.Register("ajuda", new Ajuda());
  27. this.Register("help", new Ajuda());
  28. this.Register("tour", new Ajuda());
  29. this.Register("ajudar", new Ajudar());
  30.  
  31. //Traduzidos
  32. this.Register("fly", new InfoCommand());
  33. this.Register("girar", new SpinCommand());
  34. this.Register("kissuser", new KissCommand());
  35. this.Register("beijar", new KissCommand());
  36. this.Register("besar", new KissCommand());
  37. this.Register("color", new ColourCommand());
  38. this.Register("cor", new ColourCommand());
  39. this.Register("groupchat", new GroupChatCommand()); // test
  40. this.Register("chatgrupo", new GroupChatCommand()); // test
  41. this.Register("pickall", new PickAllCommand());
  42. this.Register("ejectall", new EjectAllCommand());
  43. this.Register("lay", new LayCommand());
  44. this.Register("deitar", new LayCommand());
  45. this.Register("sit", new SitCommand());
  46. this.Register("sentar", new SitCommand());
  47. this.Register("mutepets", new MutePetsCommand());
  48. this.Register("mutebots", new MuteBotsCommand());
  49. this.Register("buyroom", new BuyRoomCommand());
  50. this.Register("comprarquarto", new BuyRoomCommand());
  51. this.Register("stand", new StandCommand());
  52. this.Register("levantar", new StandCommand());
  53.  
  54. //this.Register("builder", new Builder());
  55.  
  56. this.Register("info", new InfoCommand());
  57. this.Register("sellroom", new SellRoomCommand());
  58. this.Register("golpear", new GolpeCommand());
  59. this.Register("golpe", new GolpeCommand());
  60. this.Register("curar", new CurarCommand());
  61.  
  62. this.Register("mimic", new MimicCommand());
  63. this.Register("copy", new MimicCommand());
  64. this.Register("dance", new DanceCommand());
  65. this.Register("push", new PushCommand());
  66. this.Register("pull", new PullCommand());
  67. this.Register("enable", new EnableCommand());
  68. this.Register("follow", new FollowCommand());
  69. this.Register("faceless", new FacelessCommand());
  70. this.Register("moonwalk", new MoonwalkCommand());
  71.  
  72. this.Register("unload", new UnloadCommand());
  73. this.Register("reload", new UnloadCommand(true));
  74. this.Register("fixroom", new RegenMaps());
  75. this.Register("empty", new EmptyItems());
  76. this.Register("setmax", new SetMaxCommand());
  77. this.Register("setspeed", new SetSpeedCommand());
  78. this.Register("disablefriends", new DisableFriendsCommand());
  79. this.Register("enablefriends", new EnableFriendsCommand());
  80. this.Register("disablediagonal", new DisableDiagonalCommand());
  81. this.Register("stats", new StatsCommand());
  82. this.Register("kickpets", new KickPetsCommand());
  83. this.Register("kickbots", new KickBotsCommand());
  84.  
  85. this.Register("room", new RoomCommand());
  86. this.Register("dnd", new DNDCommand());
  87. this.Register("kill", new KillCommand());
  88. this.Register("disablegifts", new DisableGiftsCommand());
  89. this.Register("disablewhispers", new DisableWhispersCommand());
  90. this.Register("disablemimic", new DisableMimicCommand()); ;
  91. this.Register("pet", new PetCommand());
  92. this.Register("spush", new SuperPushCommand());
  93. this.Register("superpush", new SuperPushCommand());
  94.  
  95. // comandos para serem revisados
  96. //this.Register("convertcredits", new ConvertCreditsCommand());
  97. //this.Register("convertduckets", new ConvertDucketsCommand());
  98. //this.Register("flagme", new FlagMeCommand());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement