First commit

This commit is contained in:
2025-02-26 13:42:34 +01:00
commit f465c9072c
2467 changed files with 426214 additions and 0 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