mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
12 lines
267 B
Lua
12 lines
267 B
Lua
-- Succor: 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, 304, -2000, -25, 240); -- Zone: sro
|
|
end
|
|
end
|
|
|
|
return 1;
|
|
end
|