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

17 lines
376 B
Lua
Raw Normal View History

2014-11-04 16:09:08 +01:00
function run(msg, matches)
return 'James Bot '.. VERSION .. [[
Licencia GNU v2, código disponible en http://git.io/6jdjGg
Al Bot le gusta la gente solidaria.
Puedes hacer una donación a la ONG que decidas y ayudar a otras personas.]]
end
return {
2014-11-22 15:05:54 +01:00
description = "Shows bot version",
2014-11-04 22:06:59 +01:00
usage = "!version",
patterns = {"^!version$"},
2014-11-04 16:09:08 +01:00
run = run
}