×

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
  • /
  • Archives
  • /
  • Seção Editor de Mapas e Modules
  • /
  • [Lua] Peça scripts aqui!
« ‹ 9 / 133 › »
[Lua] Peça scripts aqui!
Oreidoafirst
« Consul »
1492177620000
    • Oreidoafirst#0000
    • Profil
    • Derniers messages
#161
  0
Jellymichey a dit :
Oreidoafirst a dit :


B -- Transformar Em Caveira
F -- Transformar Em R.I.P
G -- Transformar Em Galinhas
T -- Transformar Em Bomba
W -- Transformar Em Caixa Bolha Grande
P -- Transformar Em Nuvem

Para Destransformar De Algum Objeto -- Espaço

vou ver o que posso fazer ;) (pode dar treta e não conseguir)

EXISTE UMA CAVEIRA NO JOGO??

o T foi para O porque T já é hotkey para falar com a tribo

Tem Caveira Sim, Ela é a Caveira De Bola.

Tudo bem que mudou pra O :) vou anotar abaixo pra não esquecer:

B -- Transformar Em Caveira
F -- Transformar Em R.I.P
G -- Transformar Em Galinhas
O -- Transformar Em Bomba
W -- Transformar Em Caixa Bolha Grande
P -- Transformar Em Nuvem

Para Destransformar De Algum Objeto -- Espaço

Ae! xD!

Dernière modification le 1492177680000
D_k
« Citoyen »
1492306200000
    • D_k#8518
    • Profil
    • Derniers messages
    • Tribu
#162
  0

>> PEDIDO DE SCRIPT <<



Um script que possibilitasse os ratinhos da sala escreverem colorido. Ao digitar o comando: !cordotexo [CÓDIGO DA COR] o ratinho poderia escrever colorido.
Um script que possibilitasse mudar a cor do nome dos ratos. Ao digitar o comando: !cordorato [CÓDIGO DA COR] o ratinho terá seu nome com sua cor escolhida.
Lcemt
« Citoyen »
1492308180000
    • Lcemt#0000
    • Profil
    • Derniers messages
    • Tribu
#163
  0
Ronyflot a dit :

>> PEDIDO DE SCRIPT <<



Um script que possibilitasse os ratinhos da sala escreverem colorido. Ao digitar o comando: !cordotexo [CÓDIGO DA COR] o ratinho poderia escrever colorido.
Um script que possibilitasse mudar a cor do nome dos ratos. Ao digitar o comando: !cordorato [CÓDIGO DA COR] o ratinho terá seu nome com sua cor escolhida.

O primeiro não é possível.

segundo pedido:
Code Lua

1
2
3
4
5
6
function eventChatCommand(p,c)
a1,a2=c:match("(%a+)%s+(%S+)")
if a1:lower()=="cordorato" then
tfm.exec.setNameColor(p,tonumber(a2))
end
end
+Arco
« Citoyen »
1492364340000
    • +Arco#0000
    • Profil
    • Derniers messages
#164
  0
Uma script que possibilitasse deixar todos os ratos nu é possivel? please!
Judapz
« Citoyen »
1492367580000
    • Judapz#0000
    • Profil
    • Derniers messages
    • Tribu
#165
  0
Cadê o script que possibilita o rato virar algum objeto com as letras ? ;D

também kero
Louca
« Censeur »
1492371660000
    • Louca#2984
    • Profil
    • Derniers messages
#166
  0
Cadê o script que escrevemos na cor rosa de servidor?
D_k
« Citoyen »
1492392300000
    • D_k#8518
    • Profil
    • Derniers messages
    • Tribu
#167
  0
Lcemt a dit :
Ronyflot a dit :

>> PEDIDO DE SCRIPT <<



Um script que possibilitasse os ratinhos da sala escreverem colorido. Ao digitar o comando: !cordotexo [CÓDIGO DA COR] o ratinho poderia escrever colorido.
Um script que possibilitasse mudar a cor do nome dos ratos. Ao digitar o comando: !cordorato [CÓDIGO DA COR] o ratinho terá seu nome com sua cor escolhida.

O primeiro não é possível.

segundo pedido:
Code Lua

1
2
3
4
5
6
7
function eventChatCommand(p,c)
a1,a2=c:match("(%a+)%s+(%S+)")
if a1:lower()=="cordorato" then
tfm.exec.setNameColor(p,tonumber(a2))
end
end[/quote]
Fico gratificado em ter atendido meu pedido.
Ghost
« Censeur »
1492438980000
    • Ghost#4078
    • Profil
    • Derniers messages
    • Tribu
#168
  0
Judapz a dit :
Cadê o script que possibilita o rato virar algum objeto com as letras ? ;D

também kero
Jellymichey
« Censeur »
1492446240000
    • Jellymichey#0000
    • Profil
    • Derniers messages
    • Tribu
#169
  0
Snownevo a dit :
Judapz a dit :
Cadê o script que possibilita o rato virar algum objeto com as letras ? ;D

também kero


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
tfm.exec.disableAutoNewGame(true)
tfm.exec.disableAutoShaman(true)
tfm.exec.disableAutoTimeLeft(true)
tfm.exec.disableAfkDeath(true)
transf = {}
parent = {}

function eventNewPlayer(j)
transf[j] = false
for g, n in next, {32, 66, 70, 71, 79, 87, 80} do
system.bindKeyboard(j, n, false, true)
end
end

function eventPlayerLeft(j)
if transf[j] == true then
tfm.exec.removeObject(parent[j])
end
transf[j] = nil
end

function eventKeyboard(j, id, p, x, y)

if transf[j] then
if id == 32 then
tfm.exec.respawnPlayer(j)
for z=1, 5 do
tfm.exec.displayParticle(37, tfm.get.room.objectList[parent[j]].x, tfm.get.room.objectList[parent[j]].y, math.random(-10,10), math.random(-10,10), 0, 0, nil)
end
tfm.exec.movePlayer(j, tfm.get.room.objectList[parent[j]].x, tfm.get.room.objectList[parent[j]].y, false, 0, 0, false)
tfm.exec.removeObject(parent[j])
transf[j] = false
end
else
if tfm.get.room.playerList[j].isDead == false then
if (id == 32) == false then
for z=1, 5 do
tfm.exec.displayParticle(37, x, y, math.random(-10,10), math.random(-10,10), 0, 0, nil)
end
end
if id == 66 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(602, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 70 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(90, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 71 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(33, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 79 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(23, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 87 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(203, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 80 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(57, x, y, 0, 0, 0, false)
transf[j] = true
end
end
end
end

for i, v in pairs(tfm.get.room.playerList) do
eventNewPlayer(i)
end

tfm.exec.newGame(0)

caso queiram uma versão melhor vão à minha galeria :3
Loucalj a dit :
Cadê o script que escrevemos na cor rosa de servidor?

"impossivel"
+Arco a dit :
Uma script que possibilitasse deixar todos os ratos nu é possivel? please!

o mesmo de cima, mas este é mesmo impossível

Dernière modification le 1492446660000
Judapz
« Citoyen »
1492473600000
    • Judapz#0000
    • Profil
    • Derniers messages
    • Tribu
#170
  0
Jellymichey a dit :
Snownevo a dit :
Judapz a dit :
Cadê o script que possibilita o rato virar algum objeto com as letras ? ;D

também kero


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
tfm.exec.disableAutoNewGame(true)
tfm.exec.disableAutoShaman(true)
tfm.exec.disableAutoTimeLeft(true)
tfm.exec.disableAfkDeath(true)
transf = {}
parent = {}

function eventNewPlayer(j)
transf[j] = false
for g, n in next, {32, 66, 70, 71, 79, 87, 80} do
system.bindKeyboard(j, n, false, true)
end
end

function eventPlayerLeft(j)
if transf[j] == true then
tfm.exec.removeObject(parent[j])
end
transf[j] = nil
end

function eventKeyboard(j, id, p, x, y)

if transf[j] then
if id == 32 then
tfm.exec.respawnPlayer(j)
for z=1, 5 do
tfm.exec.displayParticle(37, tfm.get.room.objectList[parent[j]].x, tfm.get.room.objectList[parent[j]].y, math.random(-10,10), math.random(-10,10), 0, 0, nil)
end
tfm.exec.movePlayer(j, tfm.get.room.objectList[parent[j]].x, tfm.get.room.objectList[parent[j]].y, false, 0, 0, false)
tfm.exec.removeObject(parent[j])
transf[j] = false
end
else
if tfm.get.room.playerList[j].isDead == false then
if (id == 32) == false then
for z=1, 5 do
tfm.exec.displayParticle(37, x, y, math.random(-10,10), math.random(-10,10), 0, 0, nil)
end
end
if id == 66 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(602, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 70 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(90, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 71 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(33, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 79 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(23, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 87 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(203, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 80 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(57, x, y, 0, 0, 0, false)
transf[j] = true
end
end
end
end

for i, v in pairs(tfm.get.room.playerList) do
eventNewPlayer(i)
end

tfm.exec.newGame(0)

caso queiram uma versão melhor vão à minha galeria :3
Loucalj a dit :
Cadê o script que escrevemos na cor rosa de servidor?

"impossivel"
+Arco a dit :
Uma script que possibilitasse deixar todos os ratos nu é possivel? please!

o mesmo de cima, mas este é mesmo impossível

Tem como você fazer pra mim, se não for muito incomodo um tipo do baiacu sabe, só que modificado ?

Por exemplo: Gostaria que quando você se transformasse, você poderia se mexer (Lembando que para virar algum objeto aperta as mesmas letras que tem no script original que você criou sabe)

E para voltar ao normal aperta espaço como ta no script.

Adorei os efeitos de tp que tu colocou, amei
Judapz
« Citoyen »
1492473600000
    • Judapz#0000
    • Profil
    • Derniers messages
    • Tribu
#171
  0
Judapz a dit :
Jellymichey a dit :
Snownevo a dit :
Judapz a dit :
Cadê o script que possibilita o rato virar algum objeto com as letras ? ;D

também kero


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
tfm.exec.disableAutoNewGame(true)
tfm.exec.disableAutoShaman(true)
tfm.exec.disableAutoTimeLeft(true)
tfm.exec.disableAfkDeath(true)
transf = {}
parent = {}

function eventNewPlayer(j)
transf[j] = false
for g, n in next, {32, 66, 70, 71, 79, 87, 80} do
system.bindKeyboard(j, n, false, true)
end
end

function eventPlayerLeft(j)
if transf[j] == true then
tfm.exec.removeObject(parent[j])
end
transf[j] = nil
end

function eventKeyboard(j, id, p, x, y)

if transf[j] then
if id == 32 then
tfm.exec.respawnPlayer(j)
for z=1, 5 do
tfm.exec.displayParticle(37, tfm.get.room.objectList[parent[j]].x, tfm.get.room.objectList[parent[j]].y, math.random(-10,10), math.random(-10,10), 0, 0, nil)
end
tfm.exec.movePlayer(j, tfm.get.room.objectList[parent[j]].x, tfm.get.room.objectList[parent[j]].y, false, 0, 0, false)
tfm.exec.removeObject(parent[j])
transf[j] = false
end
else
if tfm.get.room.playerList[j].isDead == false then
if (id == 32) == false then
for z=1, 5 do
tfm.exec.displayParticle(37, x, y, math.random(-10,10), math.random(-10,10), 0, 0, nil)
end
end
if id == 66 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(602, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 70 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(90, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 71 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(33, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 79 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(23, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 87 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(203, x, y, 0, 0, 0, false)
transf[j] = true
end
if id == 80 then
tfm.exec.killPlayer(j)
parent[j] = tfm.exec.addShamanObject(57, x, y, 0, 0, 0, false)
transf[j] = true
end
end
end
end

for i, v in pairs(tfm.get.room.playerList) do
eventNewPlayer(i)
end

tfm.exec.newGame(0)

caso queiram uma versão melhor vão à minha galeria :3
Loucalj a dit :
Cadê o script que escrevemos na cor rosa de servidor?

"impossivel"
+Arco a dit :
Uma script que possibilitasse deixar todos os ratos nu é possivel? please!

o mesmo de cima, mas este é mesmo impossível

Tem como você fazer pra mim, se não for muito incomodo um tipo o script do baiacu sabe, só que modificado ?

Por exemplo: Gostaria que quando você se transformasse nos objetos que esta no script mas você poderia se mexer (Lembando que para virar algum objeto aperta as mesmas letras que tem no script original que você criou sabe)

E para voltar ao normal aperta espaço como ta no script.

Adorei os efeitos de tp que tu colocou, amei

Dernière modification le 1492473720000
Judapz
1492473660000
    • Judapz#0000
    • Profil
    • Derniers messages
    • Tribu
#172
[Modéré par Miau, raison : Triple-post.]
Jellymichey
« Censeur »
1492507620000
    • Jellymichey#0000
    • Profil
    • Derniers messages
    • Tribu
#173
  0
Noza, triple post .-.
Judapz
« Citoyen »
1492531320000
    • Judapz#0000
    • Profil
    • Derniers messages
    • Tribu
#174
  0
Jellymichey a dit :
Noza, triple post .-.

kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk é que eu sem quer dei 2 coments ;D
Mc_nandinhog
« Citoyen »
1492630440000
    • Mc_nandinhog#0000
    • Profil
    • Derniers messages
#175
  0
Um script Que pode Se Teleportar pra Qualquer Lugar
Fly
« Citoyen »
1492635000000
    • Fly#8215
    • Profil
    • Derniers messages
    • Tribu
#176
  0
Mc_nandinhog a dit :
Um script Que pode Se Teleportar pra Qualquer Lugar

Code Lua

1
2
3
eventMouse = table.foreach(tfm.get.room.playerList, function(k,v) system.bindMouse(k, true) end) or function(name, x, y)
tfm.exec.movePlayer(name, x, y)
end
Hugotitas
« Citoyen »
1492810020000
    • Hugotitas#0000
    • Profil
    • Derniers messages
    • Tribu
#177
  0
Um Script Que uma textArea fica seguindo o player
Lcemt
« Citoyen »
1492817460000
    • Lcemt#0000
    • Profil
    • Derniers messages
    • Tribu
#178
  0
Hugotitas a dit :
Um Script Que uma textArea fica seguindo o player

Fica meio lento,mas aqui está:
Code Lua

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
user='Hugotitas'

eventKeyboard=function(p,id,d,x,y)
if d then
ui.addTextArea(0,'',nil,x,y)
end
if not d then
ui.addTextArea(0,'',nil,x,y)
end
end

eventLoop=function()
pl=tfm.get.room.playerList[user]
ui.addTextArea(0,'',nil,pl.x,pl.y)
end

for i=1,400 do
system.bindKeyboard(user,i,true,true)
system.bindKeyboard(user,i,false,true)
end
Weck
« Citoyen »
1492857180000
    • Weck#3300
    • Profil
    • Derniers messages
#179
  0
Como cria Um Script?
Jellymichey
« Censeur »
1492860240000
    • Jellymichey#0000
    • Profil
    • Derniers messages
    • Tribu
#180
  0
Thiago3434 a dit :
Como cria Um Script?

Não era suposto estar na Module FAQ?
  • Forums
  • /
  • Transformice
  • /
  • Archives
  • /
  • Seção Editor de Mapas e Modules
  • /
  • [Lua] Peça scripts aqui!
« ‹ 9 / 133 › »
© Atelier801 2018

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

Version 1.27