commit f3d567ea883752eebd998d599c659fa434c2e0ca
parent 57f1c0f3030b6472ddfb1eb98fe055129d7753b6
Author: sin <sin@2f30.org>
Date: Thu, 2 May 2013 14:42:27 +0100
update kunt replies
Diffstat:
1 file changed, 18 insertions(+), 6 deletions(-)
diff --git a/src/kunt/kunt.go b/src/kunt/kunt.go
@@ -40,18 +40,30 @@ func resolveYoutubeTitle(link string) (title string, ret bool) {
}
func cmdKunt(msg irc.IrcMessage) {
- actions := []string{
+ replies := []string{
+ "dn niotho maaaan",
+ "eimai kokalo telios... gama ta",
+ "pwpw gamise ta, den vlepo brosta mou",
+ "yoyoyoyo duuuuude",
"die",
- "die bitch",
- "are you talking to me?",
"ok",
"maybe",
"yes",
- "no",
"no fucking way",
}
- idx := rand.Intn(len(actions))
- kunt.ircCtx.Privmsg(msg.Args[0], string(actions[idx]))
+ if msg.Nick == "dsp" || msg.Nick == "TLH" {
+ replies = []string{
+ "You are my Mastah!",
+ "I will always obey you my Mastah!",
+ "vv maaaaan",
+ "etimazo na stripso ena ro... ade vives",
+ "420 dawwwwwwg",
+ "You own all ma base niggah, chiiilll",
+ "spliff it up bro!",
+ }
+ }
+ idx := rand.Intn(len(replies))
+ kunt.ircCtx.Privmsg(msg.Args[0], string(replies[idx]))
}
func cmdWisdom(msg irc.IrcMessage) {