Have I told you guys how awesome you are?

No?

<ahem>

You guys are awesome.

Here's my semi-finished code:

Code:
alias ReloadAllScripts {
  var %Count = 1

  ;  Unload all current scripts, except the current script
  while ( $script(0) &gt; 1 ) {
    if ( $script(%Count) != $script ) {
      .unload -rs $chr(34) $+ $script(%Count) $+ $chr(34)
    }
    else { inc %Count }
  }
}


That look good to you?

Thanks again for all of your help.