mirror of
				https://github.com/ErikasKontenis/SabrehavenServer.git
				synced 2025-10-31 11:56:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Lua
		
	
	
	
	
	
| local config = {
 | |
| 	[2080] = {storage = 17679, text = 'You have touched Infernatil\'s throne and absorbed some of his spirit.', effect = CONST_ME_FIREAREA, toPosition = Position(32909, 32211, 15)},
 | |
| 	[2081] = {storage = 17680, text = 'You have touched Tafariel\'s throne and absorbed some of his spirit.', effect = CONST_ME_MORTAREA, toPosition = Position(32761, 32243, 15)},
 | |
| 	[2082] = {storage = 17681, text = 'You have touched Verminor\'s throne and absorbed some of his spirit.', effect = CONST_ME_POISONAREA, toPosition = Position(32840, 32327, 15)},
 | |
| 	[2083] = {storage = 17682, text = 'You have touched Apocalypse\'s throne and absorbed some of his spirit.', effect = CONST_ME_EXPLOSIONAREA, toPosition = Position(32875, 32267, 15)},
 | |
| 	[2084] = {storage = 17683, text = 'You have touched Bazir\'s throne and absorbed some of his spirit.', effect = CONST_ME_MAGIC_GREEN, toPosition = Position(32745, 32385, 15)},
 | |
| 	[2085] = {storage = 17684, text = 'You have touched Ashfalor\'s throne and absorbed some of his spirit.', effect = CONST_ME_FIREAREA, toPosition = Position(32839, 32310, 15)},
 | |
| 	[2086] = {storage = 17685, text = 'You have touched Pumin\'s throne and absorbed some of his spirit.', effect = CONST_ME_MORTAREA, toPosition = Position(32785, 32279, 15)}
 | |
| }
 | |
| 
 | |
| function onStepIn(creature, item, position, fromPosition)
 | |
| 	if not creature:isPlayer() then
 | |
| 		return true
 | |
| 	end
 | |
| 
 | |
| 	local throne = config[item:getMovementId()]
 | |
| 	if not throne then
 | |
| 		return true
 | |
| 	end
 | |
| 
 | |
| 	local cStorage = throne.storage
 | |
| 	if creature:getStorageValue(cStorage) ~= 1 then
 | |
| 		creature:setStorageValue(cStorage, 1)
 | |
| 		creature:getPosition():sendMagicEffect(throne.effect)
 | |
| 		creature:say(throne.text, TALKTYPE_MONSTER_SAY)
 | |
| 	else
 | |
| 		creature:teleportTo(throne.toPosition)
 | |
| 		creature:getPosition():sendMagicEffect(CONST_ME_MORTAREA)
 | |
| 		creature:say('Begone!', TALKTYPE_MONSTER_SAY)
 | |
| 	end
 | |
| 	return true
 | |
| end
 | 
