mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
14 lines
645 B
Lua
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
|
|
-------------------------------------------------------------------------------------------------
|