eqmac-quests/overthere/#High_Priest_I-Xar.lua
2023-07-24 13:24:37 -07:00

28 lines
804 B
Lua

function event_signal(e)
if(e.signal==1) then
eq.depop_with_timer();
end
if(e.signal==2) then
e.self:MoveTo(2734,2476,-49,195,1);
end
if(e.signal==3) then
e.self:SetRunning(true);
eq.start(14);
end
end
function event_waypoint_arrive(e)
if(e.wp==28) then
e.self:SetRunning(false);
end
end
function event_trade(e)
local item_lib = require("items");
item_lib.return_items(e.self, e.other, e.trade)
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
-------------------------------------------------------------------------------------------------