Guest User

Untitled

a guest
Aug 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. var status = -1;
  2. var mob = Array(9300004,9400571,9400014,9400575,9400121,9400112,9400122);
  3. function start() {
  4. action(1, 0, 0);
  5. }
  6. function action(mode, type, selection) {
  7. if (mode == 1)
  8. status++;
  9. else {
  10. cm.dispose();
  11. return;
  12. }
  13. if (status == 0) {
  14. var text = "Hi, which Mob would you like to be spawned. Please refrain from spamming, anyone caught spamming will be jailed.? \r\n";
  15. for(var i = 0; i < map.length ; i++)
  16. text += "#L" + i + "##m" + map[i] + "##l\r\n";
  17. cm.sendSimple(text);
  18. } else if (status == 1) {
  19. cm.spawnMonster(mob[selection], 10);
  20. cm.dispose();
  21. }
  22. }
Add Comment
Please, Sign In to add comment