peq-quests/highkeep/Grex.lua

15 lines
292 B
Lua
Raw Permalink Normal View History

2015-03-14 16:18:39 -04:00
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