Skittlesuni

#Space

Mar 31st, 2016
677
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. tfm.exec.disableAutoShaman(true)
  2.  
  3. tfm.exec.disableAutoNewGame(true)
  4. maps={6569936,6615525,6615335,6578495,6578501,6578508,6578517,6579007,6580027,6580135,6581504,6580174,2851677,6677379,1738125}
  5.  
  6.  
  7. function eventLoop(time,remaining)
  8. if remaining<=0 then
  9. tfm.exec.newGame(maps[math.random(#maps)])
  10. end
  11. end
  12.  
  13. function eventPlayerDied()
  14. local i=0
  15. for n,player in pairs(tfm.get.room.playerList) do
  16. if not player.isDead then
  17. i=i+1
  18. end
  19. end
  20. if i==0 then
  21. tfm.exec.newGame(maps[math.random(#maps)])
  22. end
  23. end
  24.  
  25. for name,player in pairs(tfm.get.room.playerList) do
  26. tfm.exec.bindKeyboard(name, 9, true, true)
  27. tfm.exec.bindKeyboard(name, 67, true, true)
  28. tfm.exec.bindKeyboard(name, 27, true, true)
  29. end
  30.  
  31. function eventKeyboard(name, key, down, x, y)
  32. if key == 9 then
  33. ui.addPopup(0, 0, "<p align='center'><font color='#babd27' size='24'face='Skittlesuni'>Help</font></p><br> Hey, welcome to #Space! This is the key list! You can summon it again if you forget something pressing [TAB]. Special Thanks for Skittlesuni, the #Space Creator and the adder of this feature!<br>[C] - Credits.<br>[Esc] - WARNING: DON'T USE IT IF YOU WANT JUST TO TROLL! - Exit from the game.<br>", nil, 52, 66, 200, true)
  34. elseif key == 67 then
  35. ui.addPopup(0, 0, "<p align='center'><font color='#babd27' size='24'face='Skittlesuni'>Credits</font></p><br><br>- Skittlesuni : Game Creator<br>- Fsoricar : Gameplay Tester<br>- Dramatotala : Unactive Scripter (expiration date if no active in 19.05.2015", nil, 4, 30, 200, true)
  36. elseif key == 27 then
  37. system.exit()
  38. end
  39. end
  40.  
  41. for name, player in pairs(tfm.get.room.playerList) do
  42. tfm.exec.setNameColor(name, string.format("%x", math.random(0x000000, 0xFFFFFF)))
  43. end
Add Comment
Please, Sign In to add comment