Results 1 to 6 of 6

Thread: SRL Stats not Reporting?

  1. #1
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default SRL Stats not Reporting?

    It's odd. Before you go into the obvious 5 minute rule, I have a timer set so it'll only do the report every five minutes, after a duel.

    Here's my report procedure:

    SCAR Code:
    Procedure ProgressReporting;
    Var
      CurrentDuels, CurrentWins, CurrentLosses : Integer;
    Begin
      Duels := Wins + Lost;
      CurrentDuels := Duels - CurrentDuels;
      CurrentWins := Wins - CurrentWins;
      CurrentLosses := Lost - CurrentLosses;
      ReportVars[0] := ReportVars[0] + CurrentWins;
      ReportVars[1] := ReportVars[1] + CurrentLosses;
      ReportVars[2] := ReportVars[2] + CurrentDuels;
      WriteLn('You won: ' + IntToStr(Wins) + ' duels.');
      WriteLn('You lost: ' + IntToStr(Lost) + ' duels.');
      WriteLn('You have dueled: ' + IntToStr(Duels) + ' times.');
      WriteLN('The script has been running for: ' + TimeRunning);
      WriteLn('Thanks for using the Duel Arena Trainer by Sandstorm!');
      SRLRandomsReport;
      Marktime(Marking);
    End;

    Does anyone know why it isn't reporting anything? :/.

  2. #2
    Join Date
    Feb 2007
    Location
    Toronto, Ontario, Canada
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You are not calling the right function. I am pretty sure it's SendSRLReport;.

  3. #3
    Join Date
    Oct 2006
    Location
    United States
    Posts
    672
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    And you cant call SendSRLReport; more than twice per 5 minutes. Also your script has to go for 5 minutes to count.

  4. #4
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by D1zl3 View Post
    And you cant call SendSRLReport; more than twice per 5 minutes. Also your script has to go for 5 minutes to count.
    *Points to second sentence*

    @A G E N T - Thanks, I'll try that. I thought it was included into SRLRandomsReport though .

  5. #5
    Join Date
    Mar 2007
    Posts
    3,042
    Mentioned
    1 Post(s)
    Quoted
    14 Post(s)

    Default

    Quote Originally Posted by Sandstorm View Post
    *Points to second sentence*

    @A G E N T - Thanks, I'll try that. I thought it was included into SRLRandomsReport though .
    It is included in there.

    Make sure you have a valid ScriptID field in your main loop, as well as valid SRLID and SRLPassword fields.
    :-)

  6. #6
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Method View Post
    It is included in there.

    Make sure you have a valid ScriptID field in your main loop, as well as valid SRLID and SRLPassword fields.
    That's why it wasn't working. Didn't have SRLID or SRLPassword fields there :P. Added those, hope it works now .

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [Discussion]Reporting other Autoers - Right or Wrong?
    By shynie in forum News and General
    Replies: 70
    Last Post: 11-30-2008, 01:21 AM
  2. Reporting Level 3's
    By spork985 in forum Bot Information and Spottings
    Replies: 9
    Last Post: 07-29-2008, 03:17 PM
  3. Reporting Script!
    By Harry in forum RS3 Outdated / Broken Scripts
    Replies: 13
    Last Post: 03-23-2007, 03:52 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •