mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
17 lines
422 B
Lua
17 lines
422 B
Lua
-- Ring of Commons
|
|
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(22, -144, -1543, 2, 244);
|
|
-- else
|
|
|
|
if (client.valid) then
|
|
client:MovePC(21, 1396, 345, -50, 490); -- Zone: commons
|
|
end
|
|
|
|
-- end
|
|
|
|
return 1;
|
|
end
|
|
|