eqmac-quests/highkeep/Grex.lua
2023-07-24 13:24:37 -07:00

14 lines
292 B
Lua

function event_say(e)
if(e.message:findi("hail")) then
e.self:Say("You have no business here. Get lost!"); -- Text made up
end
end
function event_trade(e)
local item_lib = require("items");
item_lib.return_items(e.self, e.other, e.trade)
end
function event_signal(e)
eq.depop();
end