nislem
Spoko Ziom
Dołączył: 31 Gru 2005 Posty: 18
Przeczytał: 0 tematów
Ostrzeżeń: 3/500 Skąd: Universum 6
|
Wysłany: Czw 21:50, 09 Lut 2006 Temat postu: Summon Dźwignia by nislem |
|
|
Yo wam. Przedstawiam wam mój skrypt, który jak pociągniesz dzwignie, zabiera 100gp i summonuje np. dragona
do data/actions/scripts tworzycie summon.lua i wklejacie tam:
Kod: |
--script by nislem
function onUse(cid,item,frompos,item2,topos)
if item.uid == 5855 then
monsterpos = {x=395, y=451, z=8}
doSummonCreature("Dragon", monsterpos)
doPlayerRemoveItem(cid,2148,100)
end
if item.itemid == 1945 then
doTransformItem(item.uid,1946)
elseif item.itemid == 1946 then
doTransformItem(item.uid,1945)
end
return 1
end
|
współżędne potwora wpisujecie w stałej monsterpos
a do actions.xml dodajecie:
Kod: |
<action uniqueid="5855" script="summon.lua" />
|
w map editorze dajecie 5855 uniqueID dzwigni
plz comment
Post został pochwalony 0 razy
|
|