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/version.lua
2015-11-12 17:42:03 +01:00

10 lines
258 B
Lua

function run(msg, matches)
return 'Mikubot V.'..VERSION..' by @Akamaru. \n\nSourcecode: https://ponywave.de/a/mikubot'
end
return {
description = "Zeigt die Bot Version",
usage = {"/version","/v"},
patterns = {"^/version$","^/v$"},
run = run
}