From 997c4eb1bb6e057e3d5cd4efba30adbffa983704 Mon Sep 17 00:00:00 2001 From: Jinks Date: Wed, 21 Oct 2015 07:19:08 +0200 Subject: [PATCH] Utility commands. --- plugin/utils.lua | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 plugin/utils.lua diff --git a/plugin/utils.lua b/plugin/utils.lua new file mode 100644 index 0000000..2dabbcf --- /dev/null +++ b/plugin/utils.lua @@ -0,0 +1,7 @@ +-- Small utilty commands that return static text and don't fit anywhere else. + +-- Bot's code repository +plugin.code = function (target, from, arg) + irc.say(target, "My source code can be found at https://github.com/jinks/LuaMeat") +end +plugin.source = plugin.code