mirror of
https://github.com/EQMacEmu/quests
synced 2026-08-21 00:23:04 -04:00
14 lines
423 B
Lua
14 lines
423 B
Lua
function event_spawn(e)
|
|
e.self:SetRunning(true);
|
|
end
|
|
|
|
function event_waypoint_arrive(e)
|
|
if(e.wp == 3) then
|
|
e.self:Emote("runs up and steals the note. 'Aha!! Foolish Qeynite or whatever you call yourself!! I have found the note and now I shall take it to my superior!! Just try and catch me!!'");
|
|
end
|
|
end
|
|
|
|
function event_trade(e)
|
|
local item_lib = require("items");
|
|
item_lib.return_items(e.self, e.other, e.trade)
|
|
end
|