Hello,

It would be nice if you can add an identifier that will return $true or $false if the currently active mIRC is running under Administrator Privileges, as now we can't handle if the mIRC is running under Administrator Privileges or not, this will also helps the mIRC for debugging report purpose too.

Usage: //echo -a IS: $mircadmin
Results: $true/$false

Example Code:

Code:
ON *:START: {
  if (!$mircadmin) { echo -a You must run the mIRC as Administrator in order to work some extra features! | exit -n }
}


- Thanks!