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

12 lines
245 B
Lua

-- Teleport: East Commons
function event_spell_effect(e)
local client = eq.get_entity_list():GetClientByID(e.target:GetID());
if (client.valid) then
client:MovePC(22, -144, -1543, 2, 244); -- Zone: ecommons
end
return 1;
end