99% poi quest done. Missing bureaucrats npcs, maybe some exit tps and quest log

This commit is contained in:
ErikasKontenis
2020-05-05 17:24:05 +03:00
parent 92998c466c
commit 99ea898868
33 changed files with 1429 additions and 461 deletions

View File

@@ -0,0 +1,29 @@
local ladderPosition = Position(32854, 32321, 11)
function onStepIn(creature, item, position, fromPosition)
local player = creature:getPlayer()
if not player then
return true
end
local ladderItem = Tile(ladderPosition):getItemById(5542)
if not ladderItem then
Game.createItem(5542, 1, ladderPosition)
player:say('You hear a rumbling from far away.', TALKTYPE_MONSTER_SAY, false, player)
end
return true
end
function onStepOut(creature, item, position, fromPosition)
local player = creature:getPlayer()
if not player then
return true
end
local ladderItem = Tile(ladderPosition):getItemById(5542)
if ladderItem then
ladderItem:remove()
player:say('You hear a rumbling from far away.', TALKTYPE_MONSTER_SAY, false, player)
end
return true
end