| |
| « Consul » 1520434860000
| 0 | ||
Possitive_yt a dit : In game coding language for modules. |
| « Citoyen » 1520445300000
| 0 | ||
| make a script, the mouse have a sword and can atack others |
| « Consul » 1520447880000
| 0 | ||
Vmdsbdhkrgyi a dit : You cannot add a sword (image) since you aren't a member of the module team. |
| « Citoyen » 1520492220000
| 0 | ||
| Is there a script that can add a item (furniture) from the map editor to the map |
| « Sénateur » 1520527620000
| 0 | ||
Overjoy06 a dit : Yes, but you'll need to reload the map. You have to edit the XML |
| « Citoyen » 1520585520000
| 0 | ||
| How about a script that has a message then when you click it the map changes to another map. But there's a time limit to changing it back to the normal map |
| « Citoyen » 1520585640000
| 0 | ||
| Bolodefchoco i meant it will update the text message every 5 seconds, and will end in like 50 seconds |
| « Citoyen » 1520681040000
| 0 | ||
| can you change the map every 50 seconds, to other maps (like 20 maps) |
| « Citoyen » 1520683920000
| 0 | ||
Possitive_yt a dit : Code Lua 1 2 3 4 5 6 7 8 9 maps = { 0 , 1 } -- table of maps |
| « Citoyen » 1520960700000
| 0 | ||
| help ? new name system -.- admins={['Muutluerkek#0000']=1} bans={} function eventChatCommand(name,cmd) local args={} for arg in cmd:gmatch("%S+") do table.insert(args,arg) end if args[1]=="ban" and admins[name] then bans[""..args[2]..""]=1 end end function eventLoop() for name in pairs(bans) do ui.addTextArea(1,""..name.."") if bans[name] then tfm.exec.killPlayer(name) end end end Dernière modification le 1521279180000 |
| « Sénateur » 1520961180000
| 0 | ||
Muutluerkek a dit : Code Lua 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 local True = true -- Technically faster than setting many true, true, true, true Dernière modification le 1520961240000 |
| « Citoyen » 1520965140000
| 2 | ||
Bolodefchoco a dit : :/ new name system bad ! and thanks my friend |
| « Citoyen » 1521021780000
| 0 | ||
| Is it possible to make everyone clap at the same time, but the time left is gonna be on like 1:00 |
| « Sénateur » 1521028560000
| 1 | ||
Possitive_yt a dit : Think so... Code Lua 1 2 3 4 5 eventLoop = function(current, left) |
| « Citoyen » 1521108540000
| 0 | ||
| How about when the time is on 5:00 it will change the map then when the time is at 2:00 then it will change the map |
| « Citoyen » 1521109200000
| 0 | ||
| How do you add time like 15 minutes? |
| « Citoyen » 1521109260000
| 0 | ||
| also how do you disable the "mort" command? |
| « Citoyen » 1521110160000
| 0 | ||
Possitive_yt a dit : Oh you mean this? Code Lua 1 tfm.exec.disableMortCommand(true) |
| « Citoyen » 1521110220000
| 0 | ||
| |
| « Sénateur » 1521122640000
| 0 | ||
Overjoy06 a dit : wtf? if it changes the map in 5s, it will never the 2s Possitive_yt a dit : tfm.exec.setGameTime(minutes * 60) Possitive_yt a dit : tfm.exec.disableMortCommand() |