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

16 lines
415 B
Lua

-- Ring of Tox
function event_spell_effect(e)
local client = eq.get_entity_list():GetClientByID(e.caster_id);
-- If Rof2 client; move them to east commonland ldon camp.
-- if (bit.band(client:GetClientVersionBit(), 4294967264) ~= 0) then
-- client:MovePC(414, -1172, 1060, 27, 240);
-- else
if (client.valid) then
client:MovePC(38, -453, 1059, -58, 74); -- Zone: tox
end
-- end
return 1;
end