mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
10 lines
229 B
Lua
10 lines
229 B
Lua
-- Ring of Misty
|
|
function event_spell_effect(e)
|
|
local client = eq.get_entity_list():GetClientByID(e.caster_id);
|
|
|
|
if (client.valid) then
|
|
client:MovePC(33, -1818, -508.5, 124.3, 10); -- Zone: misty
|
|
end
|
|
|
|
return 1;
|
|
end
|