mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
11 lines
273 B
Lua
11 lines
273 B
Lua
-- Circle of Misty
|
|
function event_spell_effect(e)
|
|
local mob = e.target;
|
|
if (mob.valid and mob:IsClient()) then
|
|
local client = mob:CastToClient();
|
|
if (client.valid) then
|
|
client:MovePC(33, -1818, -508.5, 124.3, 10); -- Zone: misty
|
|
end
|
|
end
|
|
return 1;
|
|
end
|