peq-quests/global/spells/554.lua
2024-03-04 17:40:55 -08:00

15 lines
401 B
Lua

-- Circle of Lavastorm
function event_spell_effect(e)
local mob = e.target;
if (mob.valid and mob:IsClient()) then
local client = mob:CastToClient();
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
end
return 1;
end