Alfons II
Stały Gość
Dołączył: 17 Lis 2005
Posty: 59
Przeczytał: 0 tematów
Ostrzeżeń: 1/10
Skąd: KRAKÓW !!!
|
Teleport rune!
heh.. Witam .. wlaśnie skończylem robic TP rune i Teleport runes temple.. są to 2 inne rzeczy.. TP rune teleportuje Cie gdzie Chcesz.. Oczywiście jest na Acces 3 Temple rune.. teleportuje Cie do Temple To juz nie trzeba wyjaśniać...
więc..
w Actions.. dodajemy..
<action itemid="2272" script="tprune.lua" allowfaruse="1" />
<action itemid="2271" script="temprune.lua" allowfaruse="1" />
Teraz tworzymy.. tprune.lua wpisujemy..
--Teleport rune by Furian--
function onUse(cid, item, frompos, item2, topos)
if getPlayerAccess(cid) == tu wpisujemy "3"..jesli chcesz zeby normalny player mogl sie teleportować wpisz 0.. then
player1pos = {x=topos.x, y=topos.y, z=topos.z}
player1 = getThingfromPos(player1pos)
if player1.itemid > 1 then
doSendMagicEffect(topos,12)
doTeleportThing(cid,topos)
doSendMagicEffect(player1pos,12)
doPlayerSendTextMessage(cid,22,"Tutaj tekst który sie pojawi gdy sie teleportniemy...")
return 0
else
doSendMagicEffect(frompos,2)
return 0
end
else
doPlayerSendTextMessage(cid,22,"Tutaj tekst Który pojawi sie gdy player nie bedzie GM..")
return 0
end
end
To jest na temple teleport rune..
--Teleport temple rune by Furian--
function onUse(cid, item, frompos, item2, topos)
if getPlayerAccess(cid) == tu wpisujemy "3"..jesli chcesz zeby normalny player mogl sie teleportować wpisz 0.. then
player1pos = {x=topos.x, y=topos.y, z=topos.z, stackpos=253}
player1 = getThingfromPos(player1pos)
if player1.itemid > 0 then
temple = {x=401, y=374, z=7}
doSendMagicEffect(topos,12)
doTeleportThing(player1.uid,temple)
doSendMagicEffect(temple,12)
doPlayerSendTextMessage(player1.uid,22,"Tutaj tekst Który pojawi sie gdy player nie bedzie GM..")
return 0
else
doSendMagicEffect(frompos,2)
return 0
end
else
doPlayerSendTextMessage(cid,22,"Tutaj tekst Który pojawi sie gdy player nie bedzie GM..")
return 0
end
end
Post został pochwalony 0 razy
|