×

Langue

Fermer
Atelier 801
  • Forums
  • Dev Tracker
  • Connexion
    • English Français
      Português do Brasil Español
      Türkçe Polski
      Magyar Română
      العربية Skandinavisk
      Nederlands Deutsch
      Bahasa Indonesia Русский
      中文 Filipino
      Lietuvių kalba 日本語
      Suomi עברית
      Italiano Česky
      Hrvatski Slovensky
      Български Latviešu
      Estonian
  • Langue
  • Forums
  • /
  • Transformice
  • /
  • Modules
  • /
  • Script Requests
« ‹ 5 / 160 › »
Script Requests
Alishakouri
« Citoyen »
1381502580000
    • Alishakouri#0000
    • Profil
    • Derniers messages
    • Tribu
#81
  0
how can i make baloon appear in the tribe house in random location ?
Ordboka
« Citoyen »
1381504080000
    • Ordboka#0000
    • Profil
    • Derniers messages
    • Tribu
#82
  0
Alishakouri a dit :
how can i make baloon appear in the tribe house in random location ?

Lua a dit :
for name,player in pairs(tfm.get.room.playerList) do
system.bindMouse(name, true)
end

function eventMouse(name, x,y)
tfm.exec.addShamanObject(28, math.random(800), math.random(400),0, 0, 0, false)
end

Here you go, simply click and a balloon will appear.
Rukli
1381506900000
    • Rukli#0000
    • Profil
    • Derniers messages
    • Tribu
#83
[Modéré par Bolinboy, raison : spam.]
Alishakouri
« Citoyen »
1381508820000
    • Alishakouri#0000
    • Profil
    • Derniers messages
    • Tribu
#84
  0
no . i want automatic baloons
Issey
« Citoyen »
1381516920000
    • Issey#0000
    • Profil
    • Derniers messages
#85
  0
Alishakouri a dit :
no . i want automatic baloons

Issey a dit :
function eventLoop()
tfm.exec.addShamanObject(28, math.random(800), math.random(400),0, 0, 0, false)
end
Nemrut
« Citoyen »
1381518300000
    • Nemrut#2191
    • Profil
    • Derniers messages
    • Tribu
#86
  0
team code?
Sandermr
« Citoyen »
1381531080000
    • Sandermr#0000
    • Profil
    • Derniers messages
    • Tribu
#87
  0
I need a script where the player can change the weapon of his choice, my prefereces would be the following (though, if you think there is a better keys, go ahead)

Z - Cannon
X - Anvil
C - Bomb
V - Spirit
Space - Meep

So whenever the player presses "V" his weapon will become spirit, not meaning he will shoot a spirit, but the next time the user crouches they will shoot a spirit.

Also, when they switch, a message appearing in the chat saying "You switched to (weapon)."
Xanmeow
« Citoyen »
1381538640000
    • Xanmeow#0000
    • Profil
    • Derniers messages
    • Tribu
#88
  0
can you make one where you cand o !addadmin and !removeadmin and the script would have an owner and the owner cant have admin removed but also... the admins can do !admintalk and it will show up as pink

pink = [Player] Message.
Shamousey
« Consul »
1381539180000
    • Shamousey#0095
    • Profil
    • Derniers messages
    • Tribu
#89
  0
Xanmeow a dit :
the admins can do !admintalk and it will show up as pink

pink = [Player] Message.

Sydoline's said that nobody outside of the staff or Lua Team is allowed to have access to this.
Xanmeow
« Citoyen »
1381539420000
    • Xanmeow#0000
    • Profil
    • Derniers messages
    • Tribu
#90
  0
Shamousey a dit :
Sydoline's said that nobody outside of the staff or Lua Team is allowed to have access to this.

well can I have a script to make it RED text?

[Player] Message
Shamousey
« Consul »
1381539660000
    • Shamousey#0095
    • Profil
    • Derniers messages
    • Tribu
#91
  0
Unfortunately you're not allowed any kind of text that could be misinterpreted or abused as moderator or server text. You could try to pick something unlike that if you really want, though.
Tini
« Sénateur »
1381540860000
    • Tini#0095
    • Profil
    • Derniers messages
    • Tribu
#92
  0
Script of it:

http://i.imgur.com/e9tfE8v.png?1
Thanks.
Joaovictors
« Citoyen »
1381545960000
    • Joaovictors#0000
    • Profil
    • Derniers messages
    • Tribu
#93
  0
Tinittee a dit :
Script of it:

Thanks.

TextAreaCallback and ui.updateTextArea?

a dit :

function eventTextAreaCallback(i, p, cb)

if cb == "deutsch" then
ui.updateTextArea(1, "Hallo, wie geht's?", p)

elseif cb == "english" then
ui.updateTextArea(1, "Hello, how are you?", p)
end

end

function eventChatCommand(p, c)

if c == "open" then
ui.addTextArea(1, "Olá como vai?", p)
ui.addTextArea(2, "<a href='event:deutsch'>Deutsch</a>", p, 50, 79)
ui.addTextArea(3, "<a href='event:english'>English</a>", p, 110, 79)
end

end
Mousechris
« Censeur »
1381557600000
    • Mousechris#0000
    • Profil
    • Derniers messages
    • Tribu
#94
  0
someone please make a "Transforcats" minigame rofl
Storzl
« Citoyen »
1381565520000
    • Storzl#0000
    • Profil
    • Derniers messages
#95
  0
Could someone make an if statement script for me which checks how many mice are in the room

thank you
Bushmeister
« Consul »
1381570020000
    • Bushmeister#0000
    • Profil
    • Derniers messages
    • Tribu
#96
  0
Is it possible to turn off the furs of all the players?
how to use tfm.get.room.playerList [name]. look returns. and Clothing IDs?
Issey
« Citoyen »
1381576020000
    • Issey#0000
    • Profil
    • Derniers messages
#97
  0
Storzl a dit :
Could someone make an if statement script for me which checks how many mice are in the room

thank you

Lua a dit :

i=0

for player, name in pairs(tfm.get.room.playerList) do
i=i+1
if(i>1) then
print('I am not alone!')
end
end

print(i)

obv i'm always alone
Baasbase
« Citoyen »
1381576560000
    • Baasbase#0095
    • Profil
    • Derniers messages
#98
  0
Issey a dit :
obv i'm always alone

Well done, but your function would print it multiple times, if there are 6 mice it will print it 5 times :)
this function below will actually return a value

Baasbase a dit :

function getMouseCount()
local count = 0
for n,p in pairs(tfm.get.room.playerList) do
count = count + 1
end
return count
end

print("Total mice: " .. getMouseCount())
Bismuthinite
« Citoyen »
1381579740000
    • Bismuthinite#0000
    • Profil
    • Derniers messages
#99
  0
The most easy ./mort command for tribe house.
Livcorish
« Citoyen »
1381584720000
    • Livcorish#0000
    • Profil
    • Derniers messages
#100
  0
Would it be possible to make a script when my leader Bretjr enters the tribe house a message would say "Welcome to your palace Bretjr! *-*"

The message can play to the whole tribe house or just him.
  • Forums
  • /
  • Transformice
  • /
  • Modules
  • /
  • Script Requests
« ‹ 5 / 160 › »
© Atelier801 2018

Equipe Conditions Générales d'Utilisation Politique de Confidentialité Contact

Version 1.27