eqmod-proxeeus-quests/rivervale/Deputy_Tilo.lua
2017-12-27 10:46:05 +01:00

10 lines
292 B
Lua

function event_say(e)
if(e.message:findi("nice hat")) then
e.self:Say(string.format("Thank you, It is worn with pride and is the symbol of the Rivervale Militia."));
end
end
function event_trade(e)
local item_lib = require("items");
item_lib.return_items(e.self, e.other, e.trade)
end