_Added in 1.9.0_ *$halted* Returns [[$true]] if a script has already used [[/halt]] during a [[Scripting_Events|event]] otherwise [[$false]]. *Example*
on ^*:TEXT:*:*:halt
on ^*:TEXT:*:*:{
  if ($halted) {
    echo -ag A previous script has already halted this event.
  }
}