Just put another on TEXT event after your first one in the same script file, but use * as the matchtext. For example:

Code:
on *:text:*hello*:?: { do this }

on *:text:*:?: { do this }


Only the first matching event will trigger from a single script file. So if someone were to say hello in this example, the first event would trigger. But if they said anything that didn't include the work "hello", then it would trigger the second event as long as they are in the same script file.

Or, you can put everything into a single on TEXT event using * as the matchtext, but then use IF/ELSEIF/ELSE inside it. Example:

Code:
on *:text:*:?: {
  if (*hello* iswm $1-) { do this }
  else { do this }
}


Invision Support
#Invision on irc.irchighway.net