Onizuka
Member
- Joined
- Jul 5, 2008
- Messages
- 2,291
- Reaction score
- 14
The scripts are from tibia 8.10 and i need them to work on 8.54. :]
So if someone would be so kind editing them to work i'd really appreciate.
movements \/
1.
2.
Action scripts: \/
3.
4.
Rep+, and many thanks!
Regards.
So if someone would be so kind editing them to work i'd really appreciate.
movements \/
1.
Code:
function onStepIn(cid, item, pos)
local demon1 = {x=828, y=1165, z=7}
local demon2 = {x=827, y=1165, z=7}
local ppos = getPlayerPosition(cid)
if item.actionid == 8881 then
doSummonCreature("Demon", demon1)
doSummonCreature("Demon", demon2)
doSendMagicEffect(ppos, 10)
end
end
2.
Code:
function onStepIn(cid, item, pos)
local npos = {x=831, y=1197, z=7}
queststatus = getPlayerStorageValue(cid,8880)
if queststatus == -1 or queststatus == 0 then
doTeleportThing(cid,npos)
doPlayerSendTextMessage(cid, 22, 'First make the quest underground.')
end
end
Action scripts: \/
3.
Code:
function onUse(cid, item, frompos, item2, topos)
local npos = {x=829, y=1193, z=6, stackpos=255}
if item.actionid == 8882 then
doPlayerSendTextMessage(cid,22,"Now you can pass the bridge.")
doTeleportThing(cid,npos)
setPlayerStorageValue(cid,8880,1)
end
end
4.
Code:
function onUse(cid, item, frompos, item2, topos)
npos = {x=829, y=1165, z=7, stackpos=255}
if item.actionid == 8880 then
doTeleportThing(cid,npos)
doSendMagicEffect(npos,10)
end
end
Rep+, and many thanks!
Regards.