mirror of
https://github.com/proxeeus/quests
synced 2026-08-22 10:29:07 -04:00
10 lines
292 B
Lua
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
|