projecteq-projecteqquests/rivervale/Deputy_Fozon.lua
2015-03-14 16:18:39 -04:00

10 lines
No EOL
290 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