Cereri scripturi |
Alexmoccanu 1454428140000
| | ||
[Modéré par Hotaru, raison : postare consecutiva] |
Whitesound « Citoyen » 1454484900000
| 0 | ||
Mă poate ajuta cineva cu script-ul care face să intri automat în gaură când ești ultimul în viață ? Mersi mult. |
Dramacorn « Consul » 1454486220000
| 2 | ||
bootcampstf a dit : function eventPlayerDied(name) local i,alive = 0, "" for name,player in pairs(tfm.get.room.playerList) do if not player.isDead then i = i + 1 alive = name end end if i == 1 then tfm.exec.giveCheese(alive) end end |
Whitesound « Citoyen » 1454524680000
| 1 | ||
dramatotala a dit : Mulțumesc mult. |
Alexmoccanu « Citoyen » 1454756340000
| 0 | ||
K spun pentru ultima oara. Care ma ajuta sa fac un profil Metheusalah pt asta nu mai da ban. Eu am nevoie de acel profil |
Whitesound « Citoyen » 1454759700000
| 0 | ||
alexmoccanu a dit : Încercă pe EN , dacă nu ai primit răspuns este pentru că probabil nu îl are nimeni. |
Dramacorn « Consul » 1455007500000
| 2 | ||
are cineva scriptul de la evenimentul cu baloane cu aer cald? edit:l-am gasit pe en Dernière modification le 1455007560000 |
Sunflowers « Censeur » 1456646520000
| 0 | ||
Salut ! Am nevoie de scriptul pentru a seta ce mape se vor juca si scriptul pentru a scoate alegerea shamanului :) |
Dramacorn « Consul » 1456647420000
| 2 | ||
skittlesuni a dit : tfm.exec.disableAutoNewGame(true) maps={0,1,2,3,4,5,6,7,8,9,10} function eventLoop(time,remaining) if remaining<=0 then tfm.exec.newGame(maps[math.random(#maps)]) end end function eventPlayerDied() local i=0 for n,player in pairs(tfm.get.room.playerList) do if not player.isDead then i=i+1 end end if i==0 then tfm.exec.newGame(maps[math.random(#maps)]) end end acolo unde e maps={0,1,2} schimba tu cu codurile de mape care vrei sa fie in script E:uite-l si pe cel care scoate shamanul: tfm.exec.disableAutoShaman(true) Dernière modification le 1456823100000 |
Sunflowers « Censeur » 1458145620000
| 0 | ||
Un script care face sa ploua cu obiecte ale shamanului! ^^ Ma gandesc la un nou module |
Delly10 « Citoyen » 1460905620000
| 0 | ||
un script cu care sa arunci explozibile |
Dramacorn « Consul » 1460993040000
| 2 | ||
cum pot sa pun mai multe comenzi intr-un module adica stiu era un script de comand dar mi-l puteti da si sa ziceti cum sa-l folosesc? ms |
Sunflowers « Censeur » 1460993220000
| 0 | ||
function eventChatCommand(name,command) if command=="comanda" then (ce vrei tu ca efect) elseif command=="comanda2" then (ce vrei tu ca efect) end end |
Cristinescu « Consul » 1460994420000
| 1 | ||
skittlesuni a dit : Există deja un astfel de script făcut de Jamesqwartz: http://atelier801.com/topic?f=6&t=804938 |
Sunflowers « Censeur » 1460994840000
| 0 | ||
cristinescu a dit : Stiu Nu am primit scriptul la timp >.< Plus ca sunt vreo 5 scripteri buni in toata comunitatea RO Asa ca vom primi scripturi cu viteza luminii stinse. Dernière modification le 1460994900000 |
Sunflowers « Censeur » 1461163620000
| 0 | ||
alex4evah a dit : O sa fac un script despre asta |
Dramacorn « Consul » 1467221880000
| 2 | ||
buna cum pot face comenzi la o comanda adica gen cum e admin e o comanda !admin si tu ai mai multe comezi ,as vrea sa stiu cum pot face si app cum ar merge schimbat adica gen !shaman si shamanul are comenzi sau !vampir si tot asa ,ms |
0 | ||
dramatotala a dit : local admins = {} function eventChatCommand(name, cmd) local arg = {} for argument in cmd:gmatch("[^%s]+") do table.insert(arg, argument) end if arg[1] == "admin" and arg[2] ~= nil then admins[arg[2]] = true end if admins[name] == true then --comenzi pentru admini end if tfm.get.room.playerList[name].isShaman == true then --comenzi pentru șamani end if tfm.get.room.playerList[name].isVampire == true then --comenzi pentru vampiri end end rip aliniere |