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

10 lines
220 B
Lua

-- Ring of Ro
function event_spell_effect(e)
local client = eq.get_entity_list():GetClientByID(e.caster_id);
if (client.valid) then
client:MovePC(35, 304, -2000, -25, 240); -- Zone: sro
end
return 1;
end