| |
| 1491731700000
| | ||
| [Modéré par Shamousey, raison : Quadruple post. You were already asked not to post multiple times in a row, please edit your previous post and give more information about the issues you are encountering.] |
| « Consul » 1491733680000
| 1 | ||
Xymessiyx a dit : Which script? |
| « Citoyen » 1491821040000
| 0 | ||
| Hello Anyone help me how to make a map when mice press S or down arrown it spawn snowball or cannon Dernière modification le 1491821700000 |
| « Citoyen » 1491844860000
| 0 | ||
| How to unshaman someone. I used tfm.exec.setShaman(player) and I want to make the player not shaman without starting a new game. I tried killing then respawing but the player is still shaman. I hope someone can help. |
| 0 | ||
Loghorizonph a dit : To change what you spawn, press spacebar. 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 local players = {} Alternatively, you could follow Shamo's tutorial to learn how to do it yourself. Heniyengui a dit : rip I don't think it's possible to properly unshaman someone without starting a new game. |
| « Citoyen » 1492019160000
| 0 | ||
Sebafrancuz a dit : by onkei its request me,its to loot errors |
| « Citoyen » 1492123680000
| 0 | ||
| I was thinking of this: Cheese war thing. Someone is chosen to get cheese ( randomly ) and has to run from the other mice and get to the hole. The one with the cheese starts in a separate place. If a mouse catches them, they must run with the cheese. The first mouse to the hole wins. Is that to much? |
| « Citoyen » 1492176660000
| 0 | ||
| What is the script for FFA in utility. You say !ffa and when you duck you will spawn a cannon and it is just under your mouse so you can cannonjump. Please provide a script. Edit: Can you add comments to explain how the script works because i'm not that good at lua. Dernière modification le 1492676040000 |
| « Consul » 1492183560000
| 1 | ||
Noonicknames a dit : Code 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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 _S = {}I hope all working fine, some things from: Official script: https://github.com/ImLiam/Transformice-Utility/blob/master/src/segments/ffa.lua Ouch I've forgotten, you've made tutorial. v Dernière modification le 1492189680000 |
| « Consul » 1492186680000
| 0 | ||
Noonicknames a dit : If you'd like a more standalone option, there's a tutorial on how to create it here. |
| « Censeur » 1492349340000
| 0 | ||
| I need a script that will allow me to spawn these: Dernière modification le 1492349520000 |
| « Censeur » 1492362480000
| 1 | ||
| you can"t add this in script |
| « Consul » 1492364040000
| 2 | ||
Tukushii a dit : It's an event, You couldn't copy values from the event... Only you can create simulation of this event, but only with Module Team Member's functions. Dernière modification le 1492383900000 |
| « Consul » 1493049060000
| 0 | ||
| I need a script in which you can vote, and when someone has a lot of votes to pop up a text with "x was guilty, |
| « Citoyen » 1493421600000
| 0 | ||
| I need script Having shop list in tribehouse Regenating coins +2 per second Shoplist ~Meep (reset meep when die) ~Cannon (3 cannons per buy) ~snowball (3 snowball per buy) |
| « Citoyen » 1493488500000
| 0 | ||
| i need script (maybe i get hack ban but one of my friends can type) 1.ballon flying around map 2.if mice touch ballon then is dead 3.round have only 30 seconds 4.mice teleported to lobby (whatever map is lobby) only 15 seconds 5.description for lobby (lobby is just map) edit:mice spawn at lobby then when 15 seconds countdown is teleport to main map for my minigame (i choose) edit 2:when one ballon spawn and for 2 second will spawn new,and when all mice dead then teleport to lobby edit 3:i dont wanna wait 100 days please type it now Dernière modification le 1493565600000 |
| « Sénateur » 1493595120000
| 1 | ||
| Can someone give an understandable code that I can write commands like !kill [Player]? |
| 0 | ||
| Things to note with the below code is that the poll only finishes if the number of votes is equal to the number of voters. Enable debug to see who voted for who. 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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 -- Is everyone voting? Or just those in the voters table? 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 --[[ Without comments; Code Lua 1 2 3 4 5 6 function eventChatCommand(name, command) Here's an example on how to make other commands; If you want to create a command that respawns a selected player for example, you can use the tfm.exec.respawnPlayer function from the TFM API. To actually make it work with by calling !respawn [name], here's a simple tutorial following the code I used above. 1) First, check if the first command entered is equal to respawn. Code Lua 1 2 3 4 5 6 7 8 function eventChatCommand(name, command) 2) Similarly to the !kill [name] command, we get the name of the player into a variable. Code Lua 1 2 3 4 5 6 7 8 9 10 11 12 function eventChatCommand(name, command) 3) Now, just call the tfm.exec.respawnPlayer command onto the player. Code Lua 1 2 3 4 5 6 7 8 9 function eventChatCommand(name, command) Dernière modification le 1493637060000 |
| « Sénateur » 1493643240000
| 1 | ||
Onkei a dit : Wow! That was really helpful. Thank you so so much! ![]() |
| « Citoyen » 1494042960000
| 0 | ||
| i, don't know how too do the lua stuff ,i just wanna make npcs. why is it so complicated. =3= |