[project @ 2005-06-01 00:27:44 by unknown_lamer]
[clinton/bobotpp.git] / scripts / hello
CommitLineData
cb21075d 1(define (hello c n)
07686d60 2 (if (string=? n "")
3 (bot:say c "Hello world !")
4 (bot:say c (string-append "Hello " n " !"))
5 )
6)
cb21075d 7
439869bf 8(bot:addcommand "hello" hello #t 2 0)