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/random_pic_nsfw.lua

39 lines
975 B
Lua
Raw Normal View History

2015-08-10 15:18:55 +02:00
do
function get_random_image(dir)
files = scandir(dir)
file = files[math.random(#files)]
return file
end
function run(msg, matches)
local pics = {
-- add more below!
2016-03-27 16:03:31 +02:00
["/nsfw"] = "../Pictures/Mikubot/nsfw/",
["/nsfw gif"] = "../Pictures/Mikubot/nsfw/gifs/"
2015-08-10 15:18:55 +02:00
}
local receiver = get_receiver(msg)
local imgtype = matches[1]
if pics[imgtype] then
local img = pics[imgtype]..get_random_image(pics[imgtype])
print("Sende... "..img)
if string.ends(img, ".gif") then
send_document(receiver, img, function() end, function() end)
2015-08-19 15:16:44 +02:00
elseif string.ends(img, ".jpg") or string.ends(img, ".jpeg") or string.ends(img, ".png") then
2015-08-10 15:18:55 +02:00
send_photo(receiver, img, function() end, function() end)
2015-08-19 15:16:44 +02:00
else
return "Fehler: " .. img
2015-08-10 15:18:55 +02:00
end
2015-08-19 15:16:44 +02:00
else
return '"'..imgtype..'" gibt es nicht.\n'
2015-08-10 15:18:55 +02:00
end
end
return {
description = "Sendet ein zufälliges Bild (NSFW)",
2015-09-11 17:35:04 +02:00
usage = {"/nsfw (gif)"},
patterns = {"^/nsfw$","^/nsfw gif$"},
2015-08-10 15:18:55 +02:00
run = run
}
end