46 lines
1.3 KiB
Lua
46 lines
1.3 KiB
Lua
-- config.people is a table of IDs/nicknames the bot can address more familiarly
|
|
-- like so:
|
|
-- 13227902: "Drew"
|
|
|
|
|
|
local PLUGIN = {}
|
|
|
|
PLUGIN.triggers = {
|
|
bot.first_name .. '%p?$',
|
|
'^tadaima%p?$',
|
|
'^i\'m home%p?$',
|
|
'^i\'m back%p?$'
|
|
}
|
|
|
|
function PLUGIN.action(msg) -- I WISH LUA HAD PROPER REGEX SUPPORT
|
|
|
|
local input = string.lower(msg.text)
|
|
|
|
if config.people[tostring(msg.from.id)] then msg.from.first_name = config.people[tostring(msg.from.id)] end
|
|
|
|
for i = 2, #PLUGIN.triggers do
|
|
if string.match(input, PLUGIN.triggers[i]) then
|
|
return send_message(msg.chat.id, 'Welcome back, ' .. msg.from.first_name .. '!')
|
|
end
|
|
end
|
|
|
|
if input:match('thanks,? '..bot.first_name) or input:match('thank you,? '..bot.first_name) then
|
|
return send_message(msg.chat.id, 'No problem, ' .. msg.from.first_name .. '!')
|
|
end
|
|
|
|
if input:match('hello,? '..bot.first_name) or input:match('hey,? '..bot.first_name) or input:match('hi,? '..bot.first_name) then
|
|
return send_message(msg.chat.id, 'Hi, ' .. msg.from.first_name .. '!')
|
|
end
|
|
|
|
if input:match('i hate you,? '..bot.first_name) or input:match('screw you,? '..bot.first_name) or input:match('fuck you,? '..bot.first_name) then
|
|
return send_msg(msg, '; _ ;')
|
|
end
|
|
|
|
if string.match(input, 'i love you,? '..bot.first_name) then
|
|
return send_msg(msg, '<3')
|
|
end
|
|
|
|
end
|
|
|
|
return PLUGIN
|