As RusselB suggested, it will block out a user's join message; same goes to the part and quit event:
Code:
on ^*:JOIN:#: {
  if ($nick == TrAnSiEnT) {
    haltdef
  }
}
on ^*:PART:#: {
  if ($nick == TrAnSiEnT) {
    haltdef
  }
}
on ^*:QUIT: {
  if ($nick == TrAnSiEnT) {
    haltdef
  }
}

If you want to block certain strings from what Transient says in the channel, you can use:
Code:
on ^*:TEXT:*:*: {
  var %strings = string1 string2 string3 string4 string5 string6
  if ($nick == TrAnSiEnT) {
    if ($istok(%strings,$1-,32)) {
      haltdef
    }
  }
}

Just replace the sring1, string2, etc...(with a space as shown) with the the specific ones you want to remove them from the user transient.

Last edited by Tomao; 28/02/09 07:09 AM.