CM V'irus of hell
GameMaster
Dołączył: 16 Sty 2008 Posty: 5
Przeczytał: 0 tematów
Ostrzeżeń: 0/5
|
Wysłany: Śro 13:21, 16 Sty 2008 Temat postu: Dice 8.1 |
|
|
1
Dice
Dziala tak jak w RL Tibi. Klikasz na kostke prawym przyciskiem myszy i losuje ci numer od 1 do 6
W katalogu data/actions/scripts tworzymy plik dice.lua i wklejamy tam to:
function onUse(cid, item, frompos, item2, topos)
rand = math.random(5792, 5797)
doSendMagicEffect(cid, frompos, 26)
number = rand-5791
name = getPlayerName(cid)
doPlayerSay(cid, name ..' rolled a '.. number ..'.',16)
doTransformItem(item.uid, rand)
return 1
end
W actions.xml dodajemy:
<action itemid="5792" script="dice.lua" />
<action itemid="5793" script="dice.lua" />
<action itemid="5794" script="dice.lua" />
<action itemid="5795" script="dice.lua" />
<action itemid="5796" script="dice.lua" />
<action itemid="5797" script="dice.lua" />
Mam nadzieje ze się spodoba
Post został pochwalony 0 razy
|
|