Ok, I finally kinda thought I understood how to use SRL Stats
My code:
Beginning:
SCAR Code:
ClearDebug;
ClearReport;
SetupSRL;
ScriptID := '913';
if(UseSRL) then
begin
SRLID := YourID;
SRLPassword := YourPass;
end;
Report:
SCAR Code:
procedure Report;
begin
ClearReport;
if(UseSRL) then
begin
ReportVars[0] := HowManyPlayers;
ReportVars[1] := TotalCut;
ReportVars[2] := MyBanks;
ReportVars[3] := Antis;
ReportVars[4] := Players[CurrentPlayer].level[13];
SRLRandomsReport;
end;
//Ln('Gathering Report');
AddToReport('#########################');
AddToReport('# Pro Fletcher #');
AddToReport('# v 1.2 #');
AddToReport('# Players: ' + intToStr(HowManyPlayers));
AddToReport('# Current: ' + Players[CurrentPlayer].Name);
AddToReport('# Running: ' + TimeRunning);
AddToReport('# Cut: ' + intToStr(Players[CurrentPlayer].Integers[1]));
AddToReport('# Total: ' + intToStr(TotalCut));
AddToReport('# Banks: ' + intToStr(MyBanks));
AddToReport('# AntiBans: ' + intToStr(antis));
AddToReport('# Level: ' + intToStr(Players[CurrentPlayer].level[13]));
AddToReport('#########################');
if(TCut > 0) and (TotalCut >= TCut) then TerminateScript;
if(SCut > 0) and (Players[CurrentPlayer].Integers[1] >= SCut) then Logout;
end;
My proggie (correct):
Code:
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 4 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
#########################
# Pro Fletcher #
# v 1.2 #
# Players: 2
# Current: ******
# Running: 16 Minutes and 27 Seconds
# Cut: 324
# Total: 324
# Banks: 13
# AntiBans: 26
# Level: 68
#########################
On the RL Stats page, all the vars have trippled? Look: (this is for the p[roggy above)

Code:
Script Statistics for Pro Fletcher Current Version 1.2
Players : 6
Total Cut : 568
Banks : 26
AntiBans : 48
End Level : 204
HELP