[project @ 2003-04-04 02:43:18 by unknown_lamer]
[clinton/bobotpp.git] / scripts / hello
CommitLineData
cb21075d 1(define (hello c n)
e07b6b46 2 (if (string=? n "")
3 (bot:say c "Hello world !")
4 (bot:say c (string-append "Hello " n " !"))))
cb21075d 5
439869bf 6(bot:addcommand "hello" hello #t 2 0)