peq-quests/global/spells/1337.lua
2020-04-14 23:04:29 -05:00

17 lines
451 B
Lua

-- Translocate: Tox
function event_spell_effect_translocate_complete(e)
local client = eq.get_entity_list():GetClientByID(e.target:GetID());
-- 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
return 1;
end