Pretty basic, quite handy.
SCAR Code:{*******************************************************************************
procedure CheckRun
Description: Checks your run % and clicks on run if it is above your percentage
By: Torrent of Flame
*******************************************************************************}
function CheckRun(WhatPercent: Byte): Boolean;
var
Runcolor: string;
begin
Result := (GetMMLevels('run', runcolor) > WhatPercent);
if Result then SetRun(True);
end;
Can Change Energy to whatever you want.
In Use;
SCAR Code:CheckRun(75);



Reply With Quote

















same variable names I use.


