9ebdbd9d3c
"things occurred" Added some utilities (id_from_username, id_from_message), removed some utilities (latcyr, others?). Removed cycle-wasting "shortcuts" -- no more automatic id_str or name; text_lower remains. Moved userdata (nicknames, lastfm, etc) to a different tree in the database (automatic migration will occur). /me now returns userdata. Speaking of migration, database now stores the latest version run to make future automigration easy. Database now saves hourly rather than minutely. Changed readme and some plugins to reflect above changes. Removed broken rockspec (Brayden, feel free to re-add once it's working). Added option to automatically block people (via drua) when blacklisted. Fixed about.lua trigger problems. administration 1.11 - Removed /kickme and /broadcast. Users should leave manually, and announcements should be made via channel rather than spam. /setqotd now handles forwarded messages correctly. /kick, /ban, /hammer, /mod, /admin now support multiple arguments. Added get_targets function. No migration is necessary.
64 lines
1.3 KiB
Lua
Executable File
64 lines
1.3 KiB
Lua
Executable File
-- Put this on the bottom of your plugin list, after help.lua.
|
|
-- If you want to configure your own greetings, copy the following table
|
|
-- (without the "config.") to your config.lua file.
|
|
|
|
local greetings = {}
|
|
|
|
local utilities = require('otouto.utilities')
|
|
|
|
function greetings:init(config)
|
|
config.greetings = config.greetings or {
|
|
['Hello, #NAME.'] = {
|
|
'hello',
|
|
'hey',
|
|
'sup',
|
|
'hi',
|
|
'good morning',
|
|
'good day',
|
|
'good afternoon',
|
|
'good evening'
|
|
},
|
|
['Goodbye, #NAME.'] = {
|
|
'bye',
|
|
'later',
|
|
'see ya',
|
|
'good night'
|
|
},
|
|
['Welcome back, #NAME.'] = {
|
|
'i\'m home',
|
|
'i\'m back'
|
|
},
|
|
['You\'re welcome, #NAME.'] = {
|
|
'thanks',
|
|
'thank you'
|
|
}
|
|
}
|
|
|
|
greetings.triggers = {
|
|
self.info.first_name:lower() .. '%p*$'
|
|
}
|
|
end
|
|
|
|
function greetings:action(msg, config)
|
|
|
|
local nick = utilities.build_name(msg.from.first_name, msg.from.last_name)
|
|
if self.database.userdata[tostring(msg.from.id)] then
|
|
nick = self.database.userdata[tostring(msg.from.id)].nickname or nick
|
|
end
|
|
|
|
for trigger,responses in pairs(config.greetings) do
|
|
for _,response in pairs(responses) do
|
|
if msg.text_lower:match(response..',? '..self.info.first_name:lower()) then
|
|
local output = utilities.char.zwnj .. trigger:gsub('#NAME', nick)
|
|
utilities.send_message(self, msg.chat.id, output)
|
|
return
|
|
end
|
|
end
|
|
end
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
return greetings
|