- Dołączył
- Styczeń 3, 2010
- Posty
- 7
- Liczba reakcji
- 0
Witam wszystkich prosze o pomoc jakiegos dobrego skryptera a mianowicie potrzebuje drzwi ktore teleportuja nas za nie a nie sie otwieraja i sa one do training roomu ze jak ja wejde przez te drzwi to juz nikt inny wejsc niemoze prosze was o ten skrypt reput poleci
Mam podobny skrypt ale pod 7.92 a potrzebuje pod 8.10 oto skrypt:
Prosze aby ktos ten skrypt przerobil na 8.10
Mam podobny skrypt ale pod 7.92 a potrzebuje pod 8.10 oto skrypt:
Kod:
function onUse(cid, item, frompos, item2, topos)
emptyRoom = true
charPos = getPlayerPosition(cid)
if (item.actionid == aidNor) then
if (charPos.y < frompos.y) then
othersidePos = {x=frompos.x, y=frompos.y+1, z=frompos.z}
else
othersidePos = {x=frompos.x, y=frompos.y-1, z=frompos.z, stackpos=253}
things = getThingfromPos(othersidePos)
if (things.itemid == 1) then
if (getPlayerLevel(things.uid) > 0) then
emptyRoom = false
end
end
end
elseif (item.actionid == aidSou) then
if (charPos.y > frompos.y) then
othersidePos = {x=frompos.x, y=frompos.y-1, z=frompos.z}
else
othersidePos = {x=frompos.x, y=frompos.y+1, z=frompos.z, stackpos=253}
things = getThingfromPos(othersidePos)
if (things.itemid == 1) then
if (getPlayerLevel(things.uid) > 0) then
emptyRoom = false
end
end
end
elseif (item.actionid == aidEas) then
if (charPos.x > frompos.x) then
othersidePos = {x=frompos.x-1, y=frompos.y, z=frompos.z}
else
othersidePos = {x=frompos.x+1, y=frompos.y, z=frompos.z, stackpos=253}
things = getThingfromPos(othersidePos)
if (things.itemid == 1) then
if (getPlayerLevel(things.uid) > 0) then
emptyRoom = false
end
end
end
elseif (item.actionid == aidWes) then
if (charPos.x < frompos.x) then
othersidePos = {x=frompos.x+1, y=frompos.y, z=frompos.z}
else
othersidePos = {x=frompos.x-1, y=frompos.y, z=frompos.z, stackpos=253}
things = getThingfromPos(othersidePos)
if (things.itemid == 1) then
if (getPlayerLevel(things.uid) > 0) then
emptyRoom = false
end
end
end
end
if (emptyRoom == true) then
doTeleportThing(cid, othersidePos)
doSendMagicEffect(charPos, 2)
doSendMagicEffect(frompos, 12)
doSendMagicEffect(othersidePos, 10)
else
doPlayerSendTextMessage(cid, 22, "This room is currently occupied.")
end
return 1
end
Prosze aby ktos ten skrypt przerobil na 8.10

