[project @ 2002-07-07 02:33:51 by unknown_lamer]
[clinton/bobotpp.git] / scripts / hello
CommitLineData
cb21075d 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)