Replace the #channel with the actual channel name.
; Syntax: !hello bob
; Output: Hello bob!
on *:text:!hello *:#channel:{ msg $chan Hello, $1 $+ ! }
; Syntax: !time
; $time returns the hours:minutes:seconds in 24 hour clock format.
; Output: The current time is 18:10:53
on *:text:!time:#channel:{ msg $chan The current time is $time }