Gotowe skrypty LUA |
Woterek « Citoyen » 1388407500000
| 3 | ||
Gotowe skrypty lua Teleportacja function eventNewPlayer(name) system.bindMouse(name, true) end function eventMouse(name, x, y) tfm.exec.movePlayer(name, x, y, false, 0, 1, false) tfm.exec.displayParticle(37, x, y, 0, 0, 0, 0, nil) end for name in pairs(tfm.get.room.playerList) do eventNewPlayer(name) end Latanie function eventNewPlayer(name) tfm.exec.bindKeyboard(name, 32, false, true) end function eventKeyboard(name, key) if key == 32 then tfm.exec.movePlayer(name, 0, 0, false, 0, -50, false) end end for name in pairs(tfm.get.room.playerList) do eventNewPlayer(name) end Przyciąganie function eventNewPlayer(name) system.bindMouse(name, true) end function eventMouse(name, x, y) tfm.exec.explosion(x, y, -10, 200, false) tfm.exec.displayParticle(12, x, y, 0, 0, 0, 0, nil) end for name in pairs(tfm.get.room.playerList) do eventNewPlayer(name) end FFA function eventNewPlayer(name) for i,key in ipairs({83,40,69}) do tfm.exec.bindKeyboard(name,key,true,true) end end function eventKeyboard(name,key,down,x,y) if key==83 or key==40 or key==69 then if tfm.get.room.playerList[name].isFacingRight then tfm.exec.addShamanObject(19,x,y) else tfm.exec.addShamanObject(20,x,y) end end end for name in pairs(tfm.get.room.playerList) do eventNewPlayer(name) end Każdy jest shamanem! function eventNewPlayer(name) tfm.exec.setShaman(name) end function eventNewGame() for name in pairs(tfm.get.room.playerList) do tfm.exec.setShaman(name) end end for name in pairs(tfm.get.room.playerList) do eventNewPlayer(name) end Shaman jest wampirem! function eventNewGame() for name in pairs(tfm.get.room.playerList) do if tfm.get.room.playerList[name].isShaman then tfm.exec.setVampirePlayer(name) end end end function eventLoop() for name in pairs(tfm.get.room.playerList) do if tfm.get.room.playerList[name].isShaman then tfm.exec.setVampirePlayer(name) end end end !mort function eventChatCommand(name,cmd) if cmd=="mort" then tfm.exec.killPlayer(name) end end Respawn function eventPlayerDied(name) tfm.exec.respawnPlayer(name) end Losowy kolor nicku for name, player in pairs(tfm.get.room.playerList) do tfm.exec.setNameColor(name, string.format("%x", math.random(0x000000, 0xFFFFFF))) end Losowy gracz staje się wampirem players = {} for name,player in pairs(tfm.get.room.playerList) do table.insert(players,name) end tfm.exec.setVampirePlayer(players[math.random(#players)]) Tworzenie drużyn by Fixe red={} blue={} function makeTeams() local playerList={} for name,player in pairs(tfm.get.room.playerList) do table.insert(playerList,name) end for i=1,#playerList,1 do local index=math.random(#playerList) local name=playerList[index] if i%2==0 then table.insert(red,name) else table.insert(blue,name) end table.remove(playerList,index) end end Ankiety x = 0 czas1 = 0 system.disableChatCommandDisplay("ankieta", true) system.disableChatCommandDisplay("usun", true) function eventChatCommand(name, cmd) if cmd:sub(0,7) == "ankieta" then x = 1 ui.addPopup(0, 1, cmd:sub(9), nil, 50, 50, nil) czas = os.time() odp1 = 0 odp2 = 0 end if cmd == "usun" then ui.removeTextArea(1, nil) ui.removeTextArea(2, nil) ui.removeTextArea(3, nil) end end function eventPopupAnswer(id, name, cb) if cb == "yes" then odp1 = odp1+1 else odp2 = odp2+1 end end function eventLoop() if x == 1 then if czas < (os.time() - 15000) then if odp1 > odp2 then ui.addTextArea(1, "Więcej osób zagłosowało na tak!", nil, 50, 50, 0, 0, nil, nil, 0.5) elseif odp1 < odp2 then ui.addTextArea(1, "Więcej osób zagłosowało na nie!", nil, 50, 50, 0, 0, nil, nil, 0.5) elseif odp1 == odp2 then ui.addTextArea(1, "Głosy były równe!", nil, 50, 50, 0, 0, nil, nil, 0.5) end ui.addTextArea(2, odp1.." osób zagłosowało na tak", nil,50, 75, 0, 0, nil, nil, 0.5) ui.addTextArea(3, odp2.." osób zagłosowało na nie", nil,50, 100, 0, 0, nil, nil, 0.5) end end end --[[ Aby stworzyć ankieta napisz: !ankieta *tekst tutaj bedzie pytaniem* wiec jak wpiszesz: !ankieta czy lubisz transformice pojawi sie okienko z pytaniem "czy lubisz transformice" i odpowiedzi tak nie. Komenda: !usun usuwa wszystkie textarea. Wyniki ankiety pojawiają się po 15 sekundach. ]] Szczerze mówiąc wzorowałem się troche na Lua Snippets. Starałem się większość kodów zrobić samemu ale niektóre po prostu skopiowałem z tego wątku. Jeśli chcecie możecie dawać pomysły na kody które przydałoby się dodać. Dernière modification le 1410898920000 |
Nicknamepll « Citoyen » 1388682600000
| 0 | ||
Śńieg? :P Przydatne :P |
Julitaserek « Citoyen » 1389874560000
| 0 | ||
-Na chate te kody? O_O |
Nicknamepll « Citoyen » 1389896520000
| 0 | ||
Julitaserek a dit : Tak. Kopiujesz kod, piszesz /lua i wklejasz kod |
Jufaster « Citoyen » 1390071420000
| 1 | ||
a dit : Skrypt na wybór ilości punktów. |
2 | ||
Dobra, to ja też coś dam. a dit : Dernière modification le 1421697120000 |
Tasted « Citoyen » 1392656340000
| 0 | ||
Woterek, jedna rzecz. Kod na losowy kolor nie działa. Daje niestety szary kolorek. :c |
Basterfeild « Citoyen » 1393353600000
| 1 | ||
a dit : Po wpisaniu !Tekst wyświetla się on na ekranie. |
Szczurb « Censeur » 1395168000000
| 0 | ||
Super przydatne :)))) |
Kiriami 1395600360000
| | ||
[Modéré par Rekichan] |
Rohere « Consul » 1399109340000
| 0 | ||
Fajny wątek. |
Myszkangel 1400231280000
| | ||
[Modéré par Coska] |
Rohere 1400242560000
| | ||
[Modéré par Coska] |
Aniolkaa « Citoyen » 1409160300000
| 0 | ||
Tworzenie drużyn by Fxie a dit : Dernière modification le 1409160420000 |
Ewelax « Citoyen » 1418912220000
| 0 | ||
Mam pytanko. Bo jak jest jakiś kod, typu: function eventNewPlayer(name) system.bindMouse(name, true) end function eventMouse(name, x, y) tfm.exec.explosion(x, y, -10, 200, false) tfm.exec.displayParticle(12, x, y, 0, 0, 0, 0, nil) end for name in pairs(tfm.get.room.playerList) do eventNewPlayer(name) end To co wpisac bym tylko ja to miała a nie wszyscy? :o |
Sakamasek « Citoyen » 1421851260000
| 1 | ||
Wszyscy |
Gekon_lamparci « Citoyen » 1428774240000
| 0 | ||
poproszę taki który sprawi że po wpisaniu !vamp ta osoba która to napisała zmienai się w wampira |
Graczg « Citoyen » 1428785700000
| 0 | ||
To chyba nie tu, jak chcesz takie cos to idz na Utility. |
Gekon_lamparci « Citoyen » 1428819540000
| 1 | ||
kurcze właśnie mi potrzebne takie do plemka :c |
Hypermousem « Censeur » 1428822960000
| 0 | ||
Wielkiogur a dit : To zamów w wątku "Zamówienia na kody" |