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

20 lines
862 B
Lua
Raw Normal View History

2015-04-14 20:21:23 +02:00
do
function run(msg, matches)
2015-04-20 18:52:25 +02:00
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',
2015-04-14 20:21:23 +02:00
'Mein Name ist Mikubot','Spiel doch etwas http://curvefever.com/',
2015-04-20 18:52:25 +02:00
'Stille sagt manchmal mehr als tausend Worte',
'Stille und Nacht sind untrennbar verwoben. Die Nacht ist die Stille unter den Sternen.'}
2015-04-14 20:21:23 +02:00
return answers[math.random(#answers)]
end
return {
description = "Es ist so still hier",
2015-04-28 17:49:11 +02:00
usage = {"Stille","stille","*stille*","*Stille*"},
patterns = {"^Stille","^stille","^*stille*","^*Stille*"},
2015-04-14 20:21:23 +02:00
run = run
}
end
2015-05-22 17:01:33 +02:00
--by Akamaru [https://ponywave.de]