peq-quests/global/spells/534.lua

12 lines
344 B
Lua

-- Ring of lavastorm
function event_spell_effect(e)
local client = eq.get_entity_list():GetClientByID(e.caster_id);
if (client.valid and eq.is_dragons_of_norrath_enabled()) then
client:MovePC(27, 460, 460, -86, 454) -- Zone: Lavastorm v1
else
client:MovePC(27, 1389, 1014, 131, 301) -- Zone: Lavastorm v0
end
return 1;
end