Advertisement
Dudugz-Contistente

Untitled

Feb 1st, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.19 KB | None | 0 0
  1. --~=V.2.0!
  2.  
  3. tfm.exec.disableAutoShaman(true)
  4. tfm.exec.disableAutoNewGame(true)
  5. tfm.exec.disableAutoScore(true)
  6.  
  7. p={}
  8. mapas={6974651,6980764,7025719,7027009,7026887,7027767,7027747,7028052,7028067,7027140,7027083,7028660,7032584}
  9. registroSpawnObjetos = {};
  10.  
  11. idlist = {}
  12.  
  13. pos = 0
  14.  
  15. admins = {"Hugotitas","Contistente","Lynezx","Rianmojang1","Hlrebelde","Marveldeath","Trofooop","Avimuk"}
  16. banidos = {}
  17. data={}
  18.  
  19. moving = true
  20. tempo = os.time();
  21. stop = 0
  22. vivos=0;
  23. teclasProibidas = {[37] = true, [38] = true, [39] = true, [40] = true, [119] = true, [87] = true};
  24.  
  25. function eventNewGame()
  26. tempo = os.time();
  27. moving = true
  28. tfm.exec.setGameTime(100)
  29.  
  30.  
  31. vivos = 0;
  32. pos=0
  33.  
  34. for i,v in pairs(tfm.get.room.playerList) do
  35. vivos=vivos+1;
  36. p[i].rodadas = p[i].rodadas + 1
  37. p[i].timestamp = os.time();
  38. ui.removeTextArea(-60,i)
  39. end
  40. end
  41.  
  42. function eventPlayerDied(name)
  43. vivos=vivos-1;
  44.  
  45. if vivos == 0 then
  46. tfm.exec.newGame(mapas[math.random(#mapas)])
  47. end
  48. end
  49.  
  50. function eventNewPlayer(name)
  51. p[name]={
  52. money = 0,
  53. wins = 0,
  54. rodadas = 0,
  55. firsts= 0,
  56. sendMessage = true,
  57. sendTime = 0,
  58. inventory = {},
  59. using = {},
  60. rank_ordem = "First",
  61. shop = {
  62. {item="Caixa",price=30,id=2,buyed=false},
  63. {item="Bigorna",price=50,id=10,buyed=false},
  64. {item="Caixa Coração",price=80,id=61,buyed=false},
  65. {item="Rato Congelado",price=178,id=54,buyed=false},
  66. {item="Nuvem",price=243,id=57,buyed=false},
  67. {item="Caixa Triangular",price=278,id=68,buyed=false},
  68. {item="R.I.P",price=345,id=90,buyed=false}
  69. },
  70. timestamp=os.time()
  71. }
  72.  
  73. if name:sub(1,1) ~= "*" then
  74. for i,v in pairs(data) do
  75. if v[1] == name then
  76. p[name] = v[2]
  77. end
  78. end
  79.  
  80. table.insert(data,{name, p[name]})
  81.  
  82. for key in pairs(teclasProibidas) do
  83. system.bindKeyboard(name, key, true, true)
  84. end
  85.  
  86. system.bindKeyboard(name, 32, true, true)
  87.  
  88. tfm.exec.chatMessage("<VP>[+]</VP> <J>Bem-vindo ao <B>Stopped</B>.</J>",name)
  89. eventChatCommand(name,"help")
  90.  
  91. tfm.exec.setPlayerScore(name,0,false)
  92. else
  93. for i=1,20 do
  94. tfm.exec.chatMessage("Por favor crie uma conta para poder jogar stopped.",name)
  95. end
  96.  
  97. table.insert(banidos,name)
  98. tfm.exec.chatMessage("[Stopped] <B><V>"..name.."</V></B> foi banido do minigame.")
  99. end
  100. end
  101.  
  102. function eventPlayerLeft(name)
  103. if name:sub(1,1) ~= "*" then
  104. id = nil
  105. for i,v in pairs(banidos) do
  106. if v == name then
  107. id = i
  108. end
  109. end
  110. if id ~= nil then
  111. table.remove(banidos,id)
  112. end
  113. end
  114. end
  115.  
  116. function eventRanking(name)
  117. local sc = {}
  118. idlist = {}
  119.  
  120. ui.addTextArea(0,"",name,80,40,600,350,nil,0x324650,nil,true)
  121. ui.addTextArea(1,'<B><J><font size="13"><p align="center">Ranking',name,75,35,610,30,nil,0x2e424d,nil,true)
  122. ui.addTextArea(2,"Pos.",name,82,77,50,20,0x0e232b,0x0e232b,nil,true)
  123. ui.addTextArea(3,"Nome",name,146,77,120,20,0x0e232b,0x0e232b,nil,true)
  124. ui.addTextArea(4,"Firsts",name,280,77,100,20,0x0e232b,0x0e232b,nil,true)
  125. ui.addTextArea(5,"Rodadas",name,395,77,70,20,0x0e232b,0x0e232b,nil,true)
  126. ui.addTextArea(6,"Moedas",name,480,77,70,20,0x0e232b,0x0e232b,nil,true)
  127. ui.addTextArea(7,"<B><a href='event:show_list'>"..p[name].rank_ordem.." ▼</a></B>",name,580,40,100,20,0x0e232b,0x0e232b,nil,true)
  128. for name, player in pairs(tfm.get.room.playerList) do
  129. this = p[name]
  130. sc[#sc+1] = {n=name,r=this.rodadas,w=this.wins,f=this.firsts,m=this.money,id=tfm.get.room.playerList[name].id} -- insira o valor que quiser
  131. end
  132.  
  133. if p[name].rank_ordem == "First" then
  134. table.sort(sc,function(a,b) return a.f>b.f end)
  135. end
  136. if p[name].rank_ordem == "Rodadas" then
  137. table.sort(sc,function(a,b) return a.r>b.r end)
  138. end
  139. if p[name].rank_ordem == "Moedas" then
  140. table.sort(sc,function(a,b) return a.m>b.m end)
  141. end
  142. y=80
  143. for k,v in pairs(sc) do
  144. if k < 9 then
  145. y=y+32
  146. ui.addTextArea(5959+v.id,k,name,82,y,50,20,0x0e232b,0x0e232b,nil,true)
  147. ui.addTextArea(4949+v.id,v.n,name,146,y,120,20,0x0e232b,0x0e232b,nil,true)
  148. ui.addTextArea(3939+v.id,v.f,name,280,y,100,20,0x0e232b,0x0e232b,nil,true)
  149. ui.addTextArea(2929+v.id,v.r,name,395,y,70,20,0x0e232b,0x0e232b,nil,true)
  150. ui.addTextArea(1919+v.id,v.m,name,480,y,70,20,0x0e232b,0x0e232b,nil,true)
  151.  
  152. for i,id in pairs({5959,4949,3939,2929,1919}) do
  153. table.insert(idlist,id+v.id)
  154. end
  155. end
  156. end
  157.  
  158.  
  159.  
  160. -- ui.addTextArea(2,"<B><font size='12'>"..str,name,305,85,190,220,0x0e232b,0x0e232b,nil,true)
  161. ui.addTextArea(-1,"<B><p align='center'><font size='15'><R><a href='event:close'>Fechar</a>",name,82,368,596,20,0x3c5063,0x3c5063,nil,true)
  162. return str
  163. end
  164.  
  165. function isAdmin(name)
  166. str = false
  167. for i,v in pairs(admins) do
  168. if v == name then
  169. str = true
  170. end
  171. end
  172.  
  173. return str
  174. end
  175.  
  176. function split(t,s)
  177. local a={}
  178. for i,v in string.gmatch(t,string.format("[^%s]+",s or "%s")) do
  179. table.insert(a,i)
  180. end
  181. return a
  182. end
  183.  
  184. function eventChatCommand(name,cmd)
  185. local arg = split(cmd, " ")
  186.  
  187. this = p[name]
  188. if arg[1] == "ban" and arg[2] and isAdmin(name) then
  189. nome = arg[2]:lower():gsub('%a', string.upper, 1)
  190.  
  191. if tfm.get.room.playerList[nome] then
  192. table.insert(banidos,nome)
  193. tfm.exec.chatMessage("<VP>[+]</VP> <N>Você baniu "..nome..".</N>",name)
  194.  
  195. for i,v in pairs(admins) do
  196. tfm.exec.chatMessage("<VP>[+]</VP> <N><B><V>"..name.."</V> baniu <J>"..nome.."</J></B>",v)
  197. end
  198. end
  199. end
  200.  
  201. if arg[1] == "give" and arg[2] and arg[3] and arg[4] and isAdmin(name) and (name == "Hugotitas" or name == "Contistente") then
  202. if arg[2] == "moedas" then
  203. nome = arg[3]:lower():gsub('%a', string.upper, 1)
  204. m = arg[4]
  205.  
  206. if tfm.get.room.playerList[nome] then
  207. p[nome].money = p[name].money+m
  208. tfm.exec.chatMessage("<VP>[+]</VP> <N>Você recebeu <J>"..m.."</J> moedas.</N>",nome)
  209. for i,v in pairs(admins) do
  210. tfm.exec.chatMessage("<VP>[+]</VP> <N><B><V>"..name.."</V></B> deu <J>"..m.."</J> moedas para <B><V>"..nome.."</V></B>",v)
  211. end
  212. end
  213. end
  214. end
  215.  
  216. if arg[1] == "mod" then
  217. onlines = ""
  218. offlines = ""
  219.  
  220. for i,v in pairs(admins) do
  221. if tfm.get.room.playerList[v] then
  222. if onlines ~= "" then
  223. onlines = onlines.."<BR><font color='#00FF00'>•</font> - "..v
  224. else
  225. onlines = "<BR><font color='#00FF00'>•</font> - "..v
  226. end
  227. else
  228. if offlines ~= "" then
  229. offlines = offlines.."<BR><font color='#FF0000'>•</font> - "..v
  230. else
  231. offlines = "<BR><font color='#FF0000'>•</font> - "..v
  232. end
  233. end
  234. end
  235.  
  236. if onlines == "" then
  237. onlines = ""
  238. end
  239.  
  240. ui.addPopup(0,3,"<B><p align='center'><font color='#BABD2F'>Equipe Stopped</font></p><br><font color='#00FF00'>•</font> - Em sala<br><font color='#FF0000'>•</font> - Fora da sala<br>"..onlines..offlines,name,250,40,300,true)
  241. end
  242.  
  243. if arg[1] == "unban" and arg[2] and isAdmin(name) then
  244. nome = arg[2]:lower():gsub('%a', string.upper, 1)
  245. id = nil
  246. for i,v in pairs(banidos) do
  247. if v == nome then
  248. id = i
  249. end
  250. end
  251.  
  252. if id ~= nil then
  253. table.remove(banidos,id)
  254. ui.removeTextArea(-60,name)
  255. tfm.exec.chatMessage("<VP>[+]</VP> <N>Você desbaniu "..nome..".</N>",name)
  256. for i,v in pairs(admins) do
  257. tfm.exec.chatMessage("<VP>[+]</VP> <N><B><V>"..name.."</V></B> desbaniu <B><J>"..nome.."</J></B>.</N>",v)
  258. end
  259. end
  260. end
  261.  
  262. if arg[1] == "rank" then
  263. eventRanking(name)
  264. end
  265.  
  266. if arg[1] == "help" then
  267. tfm.exec.chatMessage("<VP>Olá, pegue o queijo para vencer, temos ranking,loja inventário, veja utilizando os comandos: <B>!rank</B>,<B>!shop</B>,<B>!inv</B>, veja suas moedas com <B>!money</B> e tome muito cuidado preste atenção no semáforo para não morrer.</VP>",name)
  268. end
  269.  
  270. if arg[1] == "p" then
  271. if arg[2] then
  272. nome = arg[2]:lower():gsub('%a', string.upper, 1)
  273. else
  274. nome = name
  275. end
  276.  
  277. if tfm.get.room.playerList[nome] then
  278. this = tfm.get.room.playerList[nome]
  279. client = p[nome]
  280. ui.addTextArea(0,"",name,250,40,300,300,nil,0x324650,nil,true)
  281. ui.addTextArea(1,'<B><J><font size="17"><p align="center">'..nome,name,245,35,310,30,nil,0x2e424d,nil,true)
  282. ui.addTextArea(2,"Comunidade: <J>"..this.community:lower():gsub('%a', string.upper, 1).."</J><br>Look: <V>"..this.look.."</V><br><br><B>Rato</B><br><BL> • Queijos coletados em primeiro: <V>"..client.firsts.."</V></BL><br><BL> • Queijos coletados: <V>"..client.wins.."</V></BL><br><BL> • Moedas: <V>"..client.money.."</V></BL><br><BL> • Rodadas jogadas: <V>"..client.rodadas.."</V></BL>",name,255,80,290,220,0x0e232b,0x0e232b,nil,true)
  283. ui.addTextArea(3,"<R><p align='center'><B><a href='event:close'>Fechar</a>",name,255,315,290,20,0x3c5063,0x3c5063,nil,true)
  284. else
  285. tfm.exec.chatMessage("<R>"..nome.." não se encontra em sala.</R>",name)
  286. end
  287. end
  288.  
  289. if arg[1] == "money" then
  290. sendMessage(name,"<B><VP>Você tem <I>"..p[name].money.."</I> moedas.</VP></B>",name)
  291. end
  292.  
  293. if arg[1] == "shop" then
  294. eventShop(name)
  295. end
  296.  
  297. if arg[1] == "inv" then
  298. eventInv(name)
  299. end
  300. end
  301.  
  302. function eventPlayerWon(name)
  303. pos=pos+1
  304. p[name].wins = p[name].wins + 1
  305. if pos == 1 then
  306. p[name].firsts = p[name].firsts + 1
  307. end
  308.  
  309. if pos < 4 then
  310. n=name
  311.  
  312. if pos == 1 then
  313. m = 3
  314. elseif pos == 2 then
  315. m = 2
  316. elseif pos == 3 then
  317. m = 1
  318. end
  319.  
  320. Money = math.random(3,math.floor(m*4))
  321. p[n].money = p[n].money+Money
  322.  
  323. tfm.exec.playerVictory(n)
  324. tfm.exec.chatMessage("Parabéns "..n.." pegou o queijo em "..pos.."° lugar e ganhou +"..Money.." moedas.")
  325. tfm.exec.setPlayerScore(name, m, true);
  326. end
  327. vivos=vivos-1;
  328.  
  329. if vivos == 0 then
  330. tfm.exec.newGame(mapas[math.random(#mapas)])
  331. end
  332. end
  333.  
  334. function isTribeHouse()
  335. return tfm.get.room.name:sub(1,2) == string.char(42, 0x03)
  336. end
  337.  
  338. function sendMessage(name,msg)
  339. if name == nil then
  340. tfm.exec.chatMessage(msg)
  341. else
  342. tfm.exec.chatMessage(msg,name)
  343. end
  344. end
  345. function eventShop(name)
  346. y=55
  347.  
  348. ui.addTextArea(0,"",name,200,45,300,300,nil,0x324650,nil,true)
  349. ui.addTextArea(3,'<B><J><font size="13"><p align="center">Loja',name,195,40,310,30,nil,0x2e424d,nil,true)
  350. ui.addTextArea(-5,"<B><p align='center'><font size='15'><R><a href='event:close'>Fechar</a>",name,205,320,290,20,0x3c5063,0x3c5063,nil,true)
  351. for i,loja in pairs(p[name].shop) do
  352. y=y+32
  353. if loja.buyed then
  354. ui.addTextArea(2929+i,"<VP><I>"..loja.item.."</I></VP>",name,207,y,285,20,0x0e232b,0x0e232b,nil,true)
  355. else
  356. ui.addTextArea(2929+i,"<ROSE><B><a href='event:buy-"..loja.item.."'>"..loja.item.."</a></B></ROSE>",name,207,y,285,20,0x0e232b,0x0e232b,nil,true)
  357. end
  358. end
  359. end
  360.  
  361. function eventInv(name)
  362. y=55
  363.  
  364. ui.addTextArea(0,"",name,200,45,300,300,nil,0x324650,nil,true)
  365. ui.addTextArea(3,'<B><J><font size="13"><p align="center">Inventário',name,195,40,310,30,nil,0x2e424d,nil,true)
  366. ui.addTextArea(-5,"<B><p align='center'><font size='15'><R><a href='event:close'>Fechar</a>",name,205,320,290,20,0x3c5063,0x3c5063,nil,true)
  367.  
  368. for i,v in pairs(p[name].inventory) do
  369. y = y+32;
  370. if p[name].using.item == v.item then
  371. ui.addTextArea(2929+i,"<VP><I>"..v.item.."</I></VP>",name,207,y,285,20,0x0e232b,0x0e232b,nil,true)
  372. else
  373. ui.addTextArea(2929+i,"<ROSE><B><a href='event:usar-"..v.item.."'>"..v.item.."</a></B></ROSE>",name,207,y,285,20,0x0e232b,0x0e232b,nil,true)
  374. end
  375. end
  376. end
  377.  
  378. function eventTextAreaCallback(id,name,link)
  379. if link == "close" then
  380. for id=-5,8 do
  381. ui.removeTextArea(id,name)
  382. ui.removeTextArea(6969+id,name)
  383. ui.removeTextArea(7979+id,name)
  384. end
  385.  
  386.  
  387. for i,v in pairs(idlist) do
  388. ui.removeTextArea(v,name)
  389. end
  390.  
  391. for i,v in pairs(p[name].shop) do
  392. ui.removeTextArea(2929+i,name)
  393. end
  394. end
  395.  
  396. if link == "show_list" then
  397. ui.addTextArea(7,"<B><a href='event:rank'>"..p[name].rank_ordem.." ▲</a><br><a href='event:select_money'>Moedas</a><br><a href='event:select_rodadas'>Rodadas</a><br><a href='event:select_first'>First</a></B>",name,580,40,100,nil,0x0e232b,0x0e232b,nil,true)
  398. end
  399.  
  400. if link == "select_money" then
  401. eventTextAreaCallback(nil,name,"close")
  402. p[name].rank_ordem = "Moedas"
  403. eventRanking(name)
  404. end
  405. if link == "select_first" then
  406. eventTextAreaCallback(nil,name,"close")
  407. p[name].rank_ordem = "First"
  408. eventRanking(name)
  409. end
  410. if link == "select_rodadas" then
  411. eventTextAreaCallback(nil,name,"close")
  412. p[name].rank_ordem = "Rodadas"
  413. eventRanking(name)
  414. end
  415. if link == "rank" then
  416. eventTextAreaCallback(nil,name,"close")
  417. eventRanking(name)
  418. end
  419.  
  420. for i,v in pairs(p[name].shop) do
  421. if link == "buy-"..v.item then
  422. if p[name].money >= v.price then
  423. sendMessage(nil,"<VP>[+]</VP> <V><B>"..name.."</B></V> <N>comprou o item "..v.item..".</N>")
  424. p[name].money = p[name].money-v.price
  425. table.insert(p[name].inventory,{item=v.item,id=v.id})
  426. v.buyed = true
  427. else
  428. faltando = v.price-p[name].money
  429. sendMessage(name,"<I>Você precisa de <B>+"..faltando.."</B> moedas para poder comprar este item.</I>")
  430. end
  431. eventShop(name)
  432. end
  433. end
  434.  
  435. for i,v in pairs(p[name].inventory) do
  436. if link=="usar-"..v.item then
  437. p[name].using = {item=v.item,id=v.id}
  438. eventInv(name)
  439. sendMessage(name,"<B><J>Você agora está usando o item "..v.item..".</J></B>")
  440. end
  441. end
  442. end
  443.  
  444. for all in pairs(tfm.get.room.playerList) do
  445. eventNewPlayer(all)
  446. end
  447.  
  448. function eventPlayerGetCheese(n)
  449. tfm.exec.playerVictory(n)
  450. end
  451.  
  452. function eventLoop(t,r)
  453. local agora = os.time();
  454. local remover = {};
  455.  
  456. if r < 1000 then
  457. tfm.exec.newGame(mapas[math.random(#mapas)])
  458. end
  459.  
  460. for i,v in pairs(tfm.get.room.playerList) do
  461. if v.movingRight and not moving then
  462. tfm.exec.killPlayer(i)
  463. elseif v.movingLeft and not moving then
  464. tfm.exec.killPlayer(i)
  465. end
  466. end
  467.  
  468. for i,v in pairs(banidos) do
  469. ui.addTextArea(-60,"",v,-300,-200,9999,9999,0x1C1C1C,0x1C1C1C,nil,true)
  470. tfm.exec.chatMessage("<VP>[+]</VP> <R><I>Você foi banido por um administrador da sala.</I></R>",v)
  471. tfm.exec.killPlayer(v)
  472. end
  473.  
  474. for k, item in pairs(tfm.get.room.objectList) do
  475. if (registroSpawnObjetos[item.id]) then
  476. if (agora >= registroSpawnObjetos[item.id]) then
  477. table.insert(remover, item.id);
  478. end
  479. else
  480. local duracaoObjetos = {
  481. [2] = 5000, --[Caixa grande] = 5s
  482.  
  483. [10] = 8000, --[bigorna] = 8s
  484.  
  485. [61] = 7000, --[Caixa Coração] = 7s
  486. [54] = 7000, --[Caixa Coração] = 7s
  487. [90] = 5000,
  488. [85] = 3500
  489. }
  490. local duracaoPadrao = 3000; --quanto tempo os demais objetos que não estão listados acima irão durar
  491. --formato: [id do objeto] = tempo em milisegundos
  492. --ids dos objetos: http://atelier801.com/topic?f=6&t=801563&p=1#tab_4_message_1
  493. registroSpawnObjetos[item.id] = agora + (duracaoObjetos[item.id] or duracaoPadrao);
  494. end
  495. end
  496.  
  497. for i = 1, #remover do
  498. --remoção dos objetos
  499. tfm.exec.removeObject(remover[i]);
  500. registroSpawnObjetos[remover[i]] = nil;
  501. end
  502.  
  503.  
  504. if t >= 3000 then
  505. ui.addTextArea(9,"",nil,6,30,40,85,0x1C1C1C,0x1C1C1C,nil,true)
  506. if tempo < os.time()-10000 then
  507. ui.addTextArea(10,"",nil,10,32,30,20,0x008B00,0x1C1C1C,nil,true)
  508. ui.addTextArea(11,"",nil,10,62,30,20,0xB18E00,0x1C1C1C,nil,true)
  509. ui.addTextArea(12,"",nil,10,92,30,20,0xFF0000,0x1C1C1C,nil,true)
  510. moving = false
  511.  
  512. stop = stop+1;
  513.  
  514. if stop == 8 then
  515. stop = 0
  516. tempo = os.time();
  517. end
  518. elseif tempo < os.time()-8000 then
  519. ui.addTextArea(10,"",nil,10,32,30,20,0x008B00,0x1C1C1C,nil,true)
  520. ui.addTextArea(11,"",nil,10,62,30,20,0xFFCC00,0x1C1C1C,nil,true)
  521. ui.addTextArea(12,"",nil,10,92,30,20,0xCD0000,0x1C1C1C,nil,true)
  522. else
  523. moving = true
  524. ui.addTextArea(10,"",nil,10,32,30,20,0x00FF00,0x1C1C1C,nil,true)
  525. ui.addTextArea(11,"",nil,10,62,30,20,0xB18E00,0x1C1C1C,nil,true)
  526. ui.addTextArea(12,"",nil,10,92,30,20,0xCD0000,0x1C1C1C,nil,true)
  527. end
  528. end
  529. end
  530.  
  531. function eventKeyboard(name,key,down,x,y)
  532. if not moving and teclasProibidas[key] then
  533. tfm.exec.killPlayer(name)
  534. end
  535.  
  536. if (key==32) and not tfm.get.room.playerList[name].isDead then
  537. if p[name].timestamp < os.time()-10000 then
  538. local id
  539. if tfm.get.room.playerList[name].isFacingRight then
  540. id=tfm.exec.addShamanObject(p[name].using.id,x+13,y-10,0,0,0)
  541. else
  542. id=tfm.exec.addShamanObject(p[name].using.id,x-13,y-10,180,0,0)
  543. end
  544.  
  545. p[name].timestamp = os.time();
  546. else
  547. tfm.exec.chatMessage("Espere 10 segundos até spawnar um item novamente.",name)
  548. end
  549. end
  550. end
  551.  
  552. for all in pairs(tfm.get.room.playerList) do
  553. eventNewPlayer(all)
  554. end
  555.  
  556. system.disableChatCommandDisplay("rank",true)
  557. system.disableChatCommandDisplay("help",true)
  558. system.disableChatCommandDisplay("p",true)
  559. system.disableChatCommandDisplay("ban",true)
  560. system.disableChatCommandDisplay("unban",true)
  561. system.disableChatCommandDisplay("give",true)
  562. system.disableChatCommandDisplay("shop",true)
  563. system.disableChatCommandDisplay("inv",true)
  564. system.disableChatCommandDisplay("money",true)
  565.  
  566. tfm.exec.newGame(mapas[math.random(#mapas)])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement