This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot-2/plugins/interactions.lua

37 lines
739 B
Lua
Raw Normal View History

2015-07-03 00:15:52 +02:00
local PLUGIN = {}
PLUGIN.triggers = {
2015-07-08 04:24:12 +02:00
bot.first_name .. '%p?$',
2015-07-03 00:15:52 +02:00
'^tadaima%p?$',
'^i\'m home%p?$',
'^i\'m back%p?$'
}
function PLUGIN.action(msg)
2015-07-03 00:15:52 +02:00
local input = string.lower(msg.text)
local data = load_data('nicknames.json')
local id = tostring(msg.from.id)
local nick = msg.from.first_name
if data[id] then nick = data[id] end
2015-07-08 04:24:12 +02:00
for i = 2, #PLUGIN.triggers do
2015-07-03 00:15:52 +02:00
if string.match(input, PLUGIN.triggers[i]) then
return send_message(msg.chat.id, 'Welcome back, ' .. nick .. '!')
2015-07-03 00:15:52 +02:00
end
end
for k,v in pairs(config.locale.interactions) do
for key,val in pairs(v) do
if input:match(val..',? '..bot.first_name) then
return send_message(msg.chat.id, latcyr(k:gsub('#NAME', nick)))
end
end
2015-07-03 00:15:52 +02:00
end
end
return PLUGIN