projecteq-projecteqquests/highkeep/Grex.lua
2015-03-14 16:18:39 -04: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