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

10 lines
214 B
Lua

-- Ro Gate
function event_spell_effect(e)
local client = eq.get_entity_list():GetClientByID(e.caster_id);
if (client.valid) then
client:MovePC(34, 820, 1374, 10, 80); -- Zone: nro
end
return 1;
end