summaryrefslogtreecommitdiffstats
path: root/join_mitsu.tcl
blob: 3d82ce1032cd9e2c31c976cd4cb68b1869acc463 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
bind join - * join_help

proc join_help {nick host hand chan} {
   global botnick
   if {$botnick == $nick} {
      return 0
   }
   if {$chan != "#mitsu_chat_runde"} {
      return 0
   }
   putserv "PRIVMSG $chan :Willkommen im MFF-Chat $nick, stelle einfach deine Frage oder sag einfach nur Hallo. Warte bitte eine Weile auf Antwort, da die User auch ein Privatleben haben ;-) (PS: Ich bin nur ein Bot)"
}

putlog "join_mitsu by lookshe loaded"