Ok, lets say I want my script to say "Hi" in response to !hi when personx is not on #channel.

Would this work:

on *:TEXT:!hi *:#:
{ if ( personx !ison #channel ) {
msg #channel hi
}
}