Improved stille.lua

This commit is contained in:
Akamaru 2015-07-31 21:44:00 +02:00
parent f64c8f25d2
commit ef8dc4050a
1 changed files with 4 additions and 4 deletions

View File

@ -4,16 +4,16 @@ 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 http://curvefever.com/',
'Stille sagt manchmal mehr als tausend Worte',
'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.'}
return answers[math.random(#answers)]
end
return {
description = "Es ist so still hier",
usage = {"Stille","stille","*stille*","*Stille*"},
patterns = {"^Stille","^stille","^*stille*","^*Stille*"},
usage = {"Stille","*Stille*"},
patterns = {"^[Ss][Tt][Ii][Ll][Ll][Ee]$","^(*)[Ss][Tt][Ii][Ll][Ll][Ee](*)$"},
run = run
}
end