Script Requests |
Shamousey « Consul » 1381163760000
| 5 | ||
If you want a certain script to be created but don't know how to do it yourself, feel free to ask for it in this thread, and make sure you specify exactly what you want. Someone who knows what they're doing will hopefully come to this thread and help develop it for you. Please check that your request hasn't already been posted in this thread first. Topic-451991 |
Papero « Citoyen » 1381164000000
| 0 | ||
Making Bubbles float around in my tribehouse! |
Iamconz « Citoyen » 1381164120000
| 1 | ||
When someone makes the kissing emote, make the chat say "(whoever the playername is) is inlove! *-*" |
Hoopatroopa « Citoyen » 1381164120000
| 0 | ||
A falling script. |
Baasbase « Citoyen » 1381164120000
| 0 | ||
Iamconz a dit : Baasbase a dit : |
Iamconz « Citoyen » 1381164360000
| 0 | ||
Baasbase a dit : hm, can't seem to get it to work :( o -V |
Papero « Citoyen » 1381164360000
| 0 | ||
Baasbase a dit : wont work in tribehouses :C |
Baasbase « Citoyen » 1381164540000
| 1 | ||
you can either replace tfm.exec.chatMessage with print or you can add a text area if you want to do the latter you can do something like this Baasbase a dit : |
Hophipmice « Citoyen » 1381164660000
| 0 | ||
Baasbase a dit : Just a note that print will only show for the person who runs the script. |
Iamconz « Citoyen » 1381164660000
| 0 | ||
I used the latter, and it worked! Thanks *-* E: Sorry to be a pain, but is there any way of the message despawning after a few seconds? Or is it permanent? |
Ordboka « Citoyen » 1381165260000
| 2 | ||
Iamconz a dit : Here you go Ordboka a dit : Just change despawnTime to how many seconds you want before it is removed. |
Iamconz « Citoyen » 1381165260000
| 0 | ||
Ordboka a dit : Thanks! You and Baas are both stars *-* |
Minstens « Censeur » 1381165440000
| 0 | ||
Something to make that can be used only one command per round. |
Tranna « Citoyen » 1381165680000
| 0 | ||
Change mine, Bonniecorgi, Cuddleofdeth, and Noooooobie's name go red! All spelt correct. |
1 | ||
tfm.exec.setNameColor("Tranna", 0xFE0000) tfm.exec.setNameColor("Bonniecorgi", 0xFE0000) tfm.exec.setNameColor("Cuddleofdeth", 0xFE0000) tfm.exec.setNameColor("Noooooobie", 0xFE0000) edit; or that lol vv |
Ordboka « Citoyen » 1381166040000
| 1 | ||
Tranna a dit : This should do it. If I spelt anything wrong I'm sorry :P Ordboka a dit : Just write !color when the script is running and it should work Edit: So slow :/ |
Tranna « Citoyen » 1381166160000
| 0 | ||
Thank you :3 |
0 | ||
Tranna a dit : Instead of having a new line for each player you can also do it like this: [quote=Lua::API] cNames = {"Tranna", "Bonniecorgi", "Cuddleofdeth", "Noooooobie"} for _,name in pairs(cNames) do tfm.exec.setNameColor(name, 0xFE0000) end [/quote] |
Ordboka « Citoyen » 1381166460000
| 0 | ||
Jordynl a dit : You are so smart ^_^ |
Shamousey « Consul » 1381166940000
| 2 | ||
Or to shorten that even more. a dit : |