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

30 lines
1.1 KiB
Lua

function run(msg, matches)
randomValue = math.random(8)
if randomValue == 1 then
send_photo(get_receiver(msg), "pictures/wat/wat1.jpg", ok_cb, false)
elseif randomValue == 2 then
send_photo(get_receiver(msg), "pictures/wat/wat2.jpg", ok_cb, false)
elseif randomValue == 3 then
send_photo(get_receiver(msg), "pictures/wat/wat3.jpg", ok_cb, false)
elseif randomValue == 4 then
send_photo(get_receiver(msg), "pictures/wat/wat4.jpg", ok_cb, false)
elseif randomValue == 5 then
send_photo(get_receiver(msg), "pictures/wat/wat5.jpg", ok_cb, false)
elseif randomValue == 6 then
send_photo(get_receiver(msg), "pictures/wat/wat6.jpg", ok_cb, false)
elseif randomValue == 7 then
send_photo(get_receiver(msg), "pictures/wat/wat7.jpg", ok_cb, false)
elseif randomValue == 8 then
send_photo(get_receiver(msg), "pictures/wat/wat8.jpg", ok_cb, false)
--elseif randomValue == 9 then
--send_document(get_receiver(msg), "pictures/wat/wat9.gif", ok_cb, false)
end
end
return {
description = "Sendet eins von 6 WAT Bilder",
usage = {"#wat"},
patterns = {"^#[Ww][Aa][Tt]$"},
run = run
}
--by Akamaru [https://ponywave.de]