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/nick.lua
topkecleon 02a7d411fa Database is now centralized. All data is stored in tables within the database table,
which is automatically saved. Please be sure to always stop the bot with /halt to
prevent data loss.
2016-02-21 14:28:40 -05:00

46 lines
895 B
Lua
Executable File

if not database.nicknames then
database.nicknames = {}
end
local command = 'nick <nickname>'
local doc = [[```
/nick <nickname>
Set your nickname. Use "/whoami" to check your nickname and "/nick -" to delete it.
```]]
local triggers = {
'^/nick[@'..bot.username..']*'
}
local action = function(msg)
local input = msg.text:input()
if not input then
sendMessage(msg.chat.id, doc, true, msg.message_id, true)
return true
end
if string.len(input) > 32 then
sendReply(msg, 'The character limit for nicknames is 32.')
return true
end
if input == '-' then
database.nicknames[msg.from.id_str] = nil
sendReply(msg, 'Your nickname has been deleted.')
else
database.nicknames[msg.from.id_str] = input
sendReply(msg, 'Your nickname has been set to "' .. input .. '".')
end
return true
end
return {
action = action,
triggers = triggers,
doc = doc,
command = command
}