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

13 lines
236 B
Lua

-- Teleport: North Ro
function event_spell_effect(e)
local client = eq.get_entity_list():GetClientByID(e.target:GetID());
if (client.valid) then
client:MovePC(34, 914, 2673, -25, 456); -- Zone: nro
end
return 1;
end