eqmac-quests/tox/Sentinel_Creot.lua
2023-07-24 13:24:37 -07:00

14 lines
645 B
Lua

function event_waypoint_arrive(e)
if((e.wp == 1) or (e.wp == 3)) then
e.self:Say("Hail citizens. Sentinel Creot of the High Guard is on watch.");
elseif(e.wp == 1) then
e.self:SetRunning(true);
elseif(e.wp == 2) then
e.self:SetRunning(false);
end
end
-------------------------------------------------------------------------------------------------
-- Converted to .lua using MATLAB converter written by Stryd and manual edits by Speedz
-- Find/replace data for .pl --> .lua conversions provided by Speedz, Stryd, Sorvani and Robregen
-------------------------------------------------------------------------------------------------