First commit of Mikubot

This commit is contained in:
2015-04-14 20:21:23 +02:00
parent 77d7d65412
commit ce629850e2
106 changed files with 725 additions and 1332 deletions

13
plugins/nau.lua Normal file
View File

@ -0,0 +1,13 @@
function run(msg, matches)
if string.starts(msg.text, "/nau") then
send_photo(get_receiver(msg), "pictures/nau.jpg", ok_cb, false)
end
end
return {
description = "RTL Nau",
usage = "/nau",
patterns = {"^/nau"},
run = run
}