Code:
on *:text:*:#channel:if $strip($1-) == hi { msg $nick hi }


Or a regex match
Code:
on $*:text:/^hi$/Si:#channel:msg $nick hi

The Si is Strip and case-insensitive.