mirror of
				https://github.com/ErikasKontenis/SabrehavenServer.git
				synced 2025-10-31 03:56:22 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			770 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			770 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| 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
 | 
