[project @ 2002-07-09 14:28:08 by unknown_lamer]
[clinton/bobotpp.git] / scripts / hello
1 (define (hello c n)
2 (if (string=? n "")
3 (bot-say c "Hello world !")
4 (bot-say c (string-append "Hello " n " !"))
5 )
6 )
7
8 (bot-addcommand "hello" hello #t 2 0)