| |
| « Consul » 1465927320000
| 0 | ||
| Alguém tem script de rotação de mapa de Vanilla em cafofo? |
| « Censeur » 1465929660000
| 0 | ||
| como que faz para que quando passa 30s comoçe a chover pisos com 45º, 10 por 10 e dinamico, que spawna entre x=-10 y= 10 - 790 e outra coisa como que faz pra que quando jente preme E apareca uma bola de neve com a velocidade a se afastar dele, como no deathmath, mas em vez de ser um cn é uma bola de neve e exatamente à frente do rato, dependendo do lado em que está a olhar (tou a criar um module acho) Dernière modification le 1466167380000 |
| « Citoyen » 1466338800000
| 0 | ||
| Como faço para que alguém que entre no cafofo renascer/spanar ? Dernière modification le 1466338920000 |
| « Citoyen » 1466360820000
| 0 | ||
ricat1998 a dit : tenta isso: function eventNewPlayer(n) tfm.exec.respawnPlayer(n) end |
| « Citoyen » 1466365380000
| 0 | ||
jellymichey a dit : Pisos caindo function eventLoop(elapsed, remaining) if elapsed >= 30000 then x = x and x + 1 or 0 tfm.exec.addPhysicObject(x, math.random(-10,790), 10, {type=0,width=10,height=10,dynamic=true,angle=45}) end end Sobre a bola de neve, você pode simplesmente ativar a neve com o /neige ou tfm.exec.snow(), mas se quiser um script próprio, basta usar esse: local facingLeft = {} for name in pairs(tfm.get.room.playerList) do for _,key in pairs{0,2,69} do system.bindKeyboard(name, key, true) end end function eventKeyboard(name, key, down, x, y) if key == 0 or key == 2 then facingLeft[name] = key == 0 elseif key == 69 then if facingLeft[name] then tfm.exec.addShamanObject(34, x - 8, y - 5, 0, -20) else tfm.exec.addShamanObject(34, x + 8, y - 5, 0, 20) end end end mitobotmuca a dit : tfm.exec.disableAutoNewGame() function eventLoop(elapsed, remaining) if remaining <= 0 then tfm.exec.newGame(math.random(144)) end local alive = false for name,player in pairs(tfm.get.room.playerList) do if not player.isDead then alive = true break end end if not alive then tfm.exec.newGame(math.random(144)) end end tfm.exec.newGame(math.random(144)) Dernière modification le 1466365560000 |
| « Citoyen » 1466376360000
| 0 | ||
| O que é scripts? |
| « Censeur » 1466417040000
| 0 | ||
larissasurit a dit : pelo meu conhecimento fechado, script são funçoes, daquelas que tem o end no final |
| « Citoyen » 1466595240000
| 0 | ||
larissasurit a dit : No caso de Lua, "scripts" são textos digitados que dão instrução ao que o programa deve fazer. No Transformice, os scripts são interpretados e depois executados. |
| 0 | ||
| Script de X1 DE TIMES |
| 0 | ||
| |
| « Citoyen » 1466966100000
| 0 | ||
| system.disableChatCommandDisplay funciona com eventChatMessage? |
| « Citoyen » 1466971920000
| 0 | ||
yteizz a dit : não tem como evitar que mensagens sejam enviadas |
| « Sénateur » 1467842100000
| 0 | ||
| Queria um script de rotação de mapas que não repetisse nenhum mapa até todos já terem rodado |
| « Citoyen » 1467918720000
| 0 | ||
Lucasrslv a dit : pri='Lucasrslv' seg='Diloreno' ter='Mousealphas' tfm.exec.movePlayer(pri, 400, 100) tfm.exec.movePlayer(seg, 600, 100) tfm.exec.movePlayer(ter, 200, 100) |
| « Citoyen » 1467991140000
| 0 | ||
| Porque é que já não dá para jogar o module #batata ? |
| 0 | ||
Fofocolo a dit : Não é um minigame oficial |
| « Citoyen » 1468028580000
| 0 | ||
| gostariam que criassem um script que retirasse a gravidade de todos os ratos é dos pisos também |