Advertisement
Unlocker001_TFM

Untitled

Oct 25th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. tfm.exec.disableAutoShaman(true)
  2. tfm.exec.disableAutoTimeLeft(true)
  3. tfm.exec.disableAfkDeath(true)
  4. tfm.exec.disableAutoNewGame(true)
  5. Admins= {"Alexander#0520", "Hdyangy#0000", "Unlocker001#0000"}
  6. noob=""
  7.  
  8. function eventMouse(n, x, y)
  9. tfm.exec.movePlayer(noob, x, y, false, 0, 1, false)
  10. noob=""
  11. end
  12.  
  13. function eventChatCommand(n,c)
  14. args={}
  15. for s in c:gmatch("%S+") do
  16. table.insert(args, s)
  17. end
  18. cmd=args[1]:lower()
  19. for i=1,#Admins do
  20. if Admins[i] then
  21. if args[1] == "tp" then
  22. noob=args[2]
  23. end
  24. if c:sub(0,3) == "txt" then
  25. ui.addTextArea(1,"<p align='center'><font size='16'>"..c:sub(5),nil,140,360,500,35,0x000000,0x808080,0.8,true)
  26. end
  27. end
  28. end
  29. end
  30.  
  31. function eventPlayerDied(name)
  32. tfm.exec.respawnPlayer(name)
  33. end
  34.  
  35. for i=1,#Admins do
  36. system.bindMouse(Admins[i], true)
  37. end
  38.  
  39. tfm.exec.newGame(5096244)
  40. tfm.exec.setGameTime(80000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement