mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
19 lines
477 B
Lua
19 lines
477 B
Lua
-- Tox Portal
|
|
function event_spell_effect(e)
|
|
local mob = e.target;
|
|
if (mob.valid and mob:IsClient()) then
|
|
local client = mob:CastToClient();
|
|
-- If Rof2 client; move them to east commonland ldon camp.
|
|
--if (bit.band(client:GetClientVersionBit(), 4294967264) ~= 0) then
|
|
-- client:MovePC(414, -1657, -1508, 72, 494);
|
|
--else
|
|
|
|
if (client.valid) then
|
|
client:MovePC(38, -921, -1523, -38, 66); -- Zone: tox
|
|
end
|
|
|
|
--end
|
|
end
|
|
|
|
return 1;
|
|
end
|