mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
10 lines
241 B
Lua
10 lines
241 B
Lua
-- Teleport: South Ro
|
|
function event_spell_effect(e)
|
|
local client = eq.get_entity_list():GetClientByID(e.target:GetID());
|
|
|
|
if (client.valid) then
|
|
client:MovePC(35, 1053.41, -1461.16, -25.96, 0); -- Zone: sro
|
|
end
|
|
|
|
return 1;
|
|
end
|