Nottinghster
Tibia World RPG Developer
- Joined
- Oct 24, 2007
- Messages
- 1,619
- Solutions
- 6
- Reaction score
- 539
- Location
- Brazil - Rio de Janeiro
- GitHub
- Nottinghster
Hello Guys!
Could someone help me with this script?
What is wrong with the script?
Please, read the text above!
Fourth Seal: The Seal of Sacrifice
Use the vial and spill the blood between the two stones (on the tile that looks like the depot tiles), you should see a small animation on the stone tables around the tile. Go through the flame and back through the teleporter. Fourth Seal is done.
Could someone help me with this script?
What is wrong with the script?
Please, read the text above!
Fourth Seal: The Seal of Sacrifice
Use the vial and spill the blood between the two stones (on the tile that looks like the depot tiles), you should see a small animation on the stone tables around the tile. Go through the flame and back through the teleporter. Fourth Seal is done.
Code:
--Script by Nottinghster
function onStepIn(cid, item, pos)
splash = {x=32243, y=31892, z=14}
newpos = {x=32247, y=31895, z=14}
getsplash = getThingfromPos(2016,splash)
if item.actionid == 1337 and getsplash.type == 2 then
doSendMagicEffect(splash, 8)
setPlayerStorageValue(cid, 20004)
doTeleportThing(cid,newpos)
else
end
return TRUE
end
Last edited: