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

21 lines
982 B
Lua

do
function run(msg, matches)
local answers = {'Ja, es ist sehr ruhig hier','Wenn es dir zu still ist, kannst du gerne mit mir reden',
'*SCHREI*','Dann mach doch etwas dagegen!','Möpse?','Vermutlich schlafen alle',
'Stört dich die Stille?','Nein, es ist nicht still','Nyu?','Besser als Spam','Stille ist schön',
'Mein Name ist Mikubot','Spiel doch etwas Curvefever.com 😉',
'Stille sagt manchmal mehr als tausend Worte','Spiel doch etwas Agrar.io 😉',
'Stille und Nacht sind untrennbar verwoben. Die Nacht ist die Stille unter den Sternen.',
'Hier könnte Ihre Werbung stehen!','Folge mir auf Twitter! Twitter.com/Mikubot_'}
return answers[math.random(#answers)]
end
return {
description = "Es ist so still hier",
usage = {"Stille","*Stille*"},
patterns = {"^[Ss][Tt][IiUu][Ll][Ll][Ee].?$","^(*)[Ss][Tt][Ii][Ll][Ll][Ee](*)$"},
run = run
}
end
--by Akamaru [https://ponywave.de]