mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
12 lines
245 B
Lua
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
|
|
|
|
|