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/plugins/rename.lua
Akamaru 76699da739 new plugins
change_pic.lua: Change the group picture
rename:lua Rename group name
2015-07-27 15:50:19 +02:00

12 lines
237 B
Lua

function run(msg, matches)
local receiver = get_receiver(msg)
local text = matches[1]
rename_chat(receiver, text, ok_cb, false)
end
return {
description = "",
usage = {""},
patterns = {"^/rename (.*)$"},
run = run
}