mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
12 lines
269 B
Lua
12 lines
269 B
Lua
-- Evacuate: Ro
|
|
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(35, 120, -1046, 8, 370); -- Zone: sro
|
|
end
|
|
end
|
|
|
|
return 1;
|
|
end
|