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

13 lines
529 B
Lua
Raw Normal View History

2015-04-14 20:21:23 +02:00
function run(msg, matches)
local answers = {'Ja','Nein','Eines Tages vielleicht'}
return answers[math.random(#answers)]
end
return {
description = "Beantwortet euch eine Frage (100% Wahrheit!)",
2015-04-28 17:49:11 +02:00
usage = {"Magische Miesmuschel [Frage]","magische Miesmuschel [Frage]","Magische miesmuschel [Frage]","magische miesmuschel [Frage]"},
patterns = {"^Magische Miesmuschel(.*)$","^magische Miesmuschel(.*)$","^Magische miesmuschel(.*)$","^magische miesmuschel(.*)$"},
2015-04-14 20:21:23 +02:00
run = run
}
2015-05-22 17:01:33 +02:00
--by Akamaru [https://ponywave.de]