[project @ 2005-07-05 18:48:49 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)