Added in 1.9.0

$halted

Returns $true if a script has already used /halt during a event otherwise $false.

Example

on ^*:TEXT:*:*:halt
on ^*:TEXT:*:*:{
  if ($halted) {
    echo -ag A previous script has already halted this event.
  }
}