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

10 lines
258 B
Lua
Raw Normal View History

2014-11-04 16:09:08 +01:00
function run(msg, matches)
2015-11-12 17:42:03 +01:00
return 'Mikubot V.'..VERSION..' by @Akamaru. \n\nSourcecode: https://ponywave.de/a/mikubot'
2014-11-04 16:09:08 +01:00
end
return {
2015-04-14 20:21:23 +02:00
description = "Zeigt die Bot Version",
2015-04-28 17:49:11 +02:00
usage = {"/version","/v"},
patterns = {"^/version$","^/v$"},
run = run
2015-11-12 17:42:03 +01:00
}