Quote:

All I know is that this has to go thru raw commands

Doesn't even have to do that, jsut "/help halting default text"

And to solve your examples to get you started:

Code:
on [b]^[/b]*:NICK: {
  var %chan = 1
  while ($comchan($nick, %chan)) {
    /echo -ti2 $ifmatch 9.:Nickchange:. $nick is now known as $newnick
    /inc %chan
  }
  /haltdef
}

on [b]^[/b]*:QUIT: {
  var %chan = 1
  while ($comchan($nick, %chan)) {
    /echo -ti2 $ifmatch 12.:Quit:. $nick ( $+ $1- $+ )
    /inc %chan
  }
  /haltdef
}


Those are much different because they do not pass a channel name, so i had to use a loop. The point is, use a ^ prefix (shown in bold) echo to the channel, and don't forget to /haltdef and you can make it look like whatever you want >:D

p.s Umm Para, why my BB code (bolds) not working? ...