eqmod-proxeeus-quests/highkeep/Lartin.lua
2017-03-28 18:50:24 +02: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