Results 1 to 9 of 9

Thread: Problem with Anti-Randoms

  1. #1
    Join Date
    Oct 2007
    Location
    Missouri important for.....nothing.
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Problem with Anti-Randoms

    Ok i have a somewhat good script that im pretty much finished with except i keep getting a problem when i try and use it. the problem is:

    Unknown identifier 'HandleTrade' in script


    do u know how to help me? plz help!!!!!
    http://www.stats.srl-forums.com/sigs/3033.png

    Yea i'm a lvl 62 NOOB!!!!!!!!!! THANK YOU

    Quote Originally Posted by metagen View Post
    I meant why do you add an a to your report vars. just curious. And if you call me a spammer again I'm going to be seriously pissed.

    edit: OOOOH and what is my teddy bear for lol just noticed it

  2. #2
    Join Date
    Mar 2007
    Location
    Netherlands->Amersfoort.
    Posts
    1,615
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    add:

    SCAR Code:
    {.include SRL/SRL/Misc/Trade.scar}

    to you're script. under program.
    so like:
    SCAR Code:
    program New;
    {.include srl/srl.scar}
    {.include SRL/SRL/Misc/Trade.scar}

  3. #3
    Join Date
    Oct 2007
    Location
    Missouri important for.....nothing.
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ty very much
    http://www.stats.srl-forums.com/sigs/3033.png

    Yea i'm a lvl 62 NOOB!!!!!!!!!! THANK YOU

    Quote Originally Posted by metagen View Post
    I meant why do you add an a to your report vars. just curious. And if you call me a spammer again I'm going to be seriously pissed.

    edit: OOOOH and what is my teddy bear for lol just noticed it

  4. #4
    Join Date
    Oct 2007
    Location
    Missouri important for.....nothing.
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    1 more problem b4 u leave
    i have a problem called

    'BEGIN' expected in script

    its in anti-randoms too this is how it is set-up:

    SCAR Code:
    Function FindFastRandoms: Boolean;

    Var
      i: Integer;

    Begin
      For I := 1 To 11 Do
      Begin
        Case I Of
           1:  If FindDead Then
                 DeathWalk;
           2:  If FindMod Then
                 Result := True;
           3:  If FindMime Then
                 Result := True;
           4:  If FindMaze Then
                 Result := True;
           5:  If FindQuiz Then
                 Result := True;
           6:  If FindDemon Then
                 Result := True;
           7: Begin
                 If NoGameTab Then
                 Begin
                   Result := True;
                   Players[CurrentPlayer].loc := 'No GameTab';
                   Logout;
                   Exit;
                 End;
               End;
           8 : If RC Then
                 Result := True;
           9 : If FindFight Then
                  Begin
                    Result := True;
                    RunTo(RunDir, True);
                  End;
           10: If FindTalk Then
                 Result := True;
           11: If HandleTrade Then
                 Result := True;
           12: If InBlack then
                  begin
                    Result :=true;
                    Players[CurrentPlayer].loc := 'InBlack';
                    Logout;
                    Exit;
                  end;
                end;
            end;
         End;
      Wait(1);     {<<<---------right here}
    End;
    http://www.stats.srl-forums.com/sigs/3033.png

    Yea i'm a lvl 62 NOOB!!!!!!!!!! THANK YOU

    Quote Originally Posted by metagen View Post
    I meant why do you add an a to your report vars. just curious. And if you call me a spammer again I'm going to be seriously pissed.

    edit: OOOOH and what is my teddy bear for lol just noticed it

  5. #5
    Join Date
    Mar 2007
    Location
    Netherlands->Amersfoort.
    Posts
    1,615
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you have to much ''End''s.

    SCAR Code:
    Function FindFastRandoms: Boolean;

    Var
      i: Integer;

    Begin
      For I := 1 To 11 Do
      Begin
        Case I Of
           1:  If FindDead Then
                 DeathWalk;
           2:  If FindMod Then
                 Result := True;
           3:  If FindMime Then
                 Result := True;
           4:  If FindMaze Then
                 Result := True;
           5:  If FindQuiz Then
                 Result := True;
           6:  If FindDemon Then
                 Result := True;
           7: Begin
                 If NoGameTab Then
                 Begin
                   Result := True;
                   Players[CurrentPlayer].loc := 'No GameTab';
                   Logout;
                   Exit;
                 End;
               End;
           8 : If RC Then
                 Result := True;
           9 : If FindFight Then
                  Begin
                    Result := True;
                    RunTo(RunDir, True);
                  End;
           10: If FindTalk Then
                 Result := True;
           11: If HandleTrade Then
                 Result := True;
           12: If InBlack then
               begin
                 Result :=true;
                 Players[CurrentPlayer].loc := 'InBlack';
                 Logout;
                 Exit;
               end;
            end;
         End;
      Wait(1);     {<<<---------right here}
    End;

  6. #6
    Join Date
    Oct 2007
    Location
    Missouri important for.....nothing.
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    how do i fix it? This is actually my first script I'm going to post
    http://www.stats.srl-forums.com/sigs/3033.png

    Yea i'm a lvl 62 NOOB!!!!!!!!!! THANK YOU

    Quote Originally Posted by metagen View Post
    I meant why do you add an a to your report vars. just curious. And if you call me a spammer again I'm going to be seriously pissed.

    edit: OOOOH and what is my teddy bear for lol just noticed it

  7. #7
    Join Date
    Oct 2007
    Location
    Missouri important for.....nothing.
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nvm i didnt see the post right lol
    http://www.stats.srl-forums.com/sigs/3033.png

    Yea i'm a lvl 62 NOOB!!!!!!!!!! THANK YOU

    Quote Originally Posted by metagen View Post
    I meant why do you add an a to your report vars. just curious. And if you call me a spammer again I'm going to be seriously pissed.

    edit: OOOOH and what is my teddy bear for lol just noticed it

  8. #8
    Join Date
    Oct 2007
    Location
    Missouri important for.....nothing.
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ty soooo much i love u ..... not in the gay way though ....more like a brother .....well I'm going to put u in the credits anyway.
    http://www.stats.srl-forums.com/sigs/3033.png

    Yea i'm a lvl 62 NOOB!!!!!!!!!! THANK YOU

    Quote Originally Posted by metagen View Post
    I meant why do you add an a to your report vars. just curious. And if you call me a spammer again I'm going to be seriously pissed.

    edit: OOOOH and what is my teddy bear for lol just noticed it

  9. #9
    Join Date
    Mar 2007
    Location
    Netherlands->Amersfoort.
    Posts
    1,615
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by tigerskall View Post
    nvm i didnt see the post right lol
    ok
    good luck with you're script

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. special type of anti ban and anti randoms
    By Magiic in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 07-27-2008, 12:50 PM
  2. I need a script with JUST Anti-Bans and Anti-Randoms.
    By Dipped_in_Pwn_Sauce in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 11-18-2007, 02:38 PM
  3. Anti-X question! (anti-ban, anti-randoms)
    By jvwarrior in forum OSR Help
    Replies: 9
    Last Post: 10-31-2007, 03:09 AM
  4. Karajama auto nat runner with anti bans/ anti randoms
    By mike_2922 in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 08-16-2007, 02:40 AM
  5. Replies: 3
    Last Post: 03-31-2007, 02:34 AM

Posting Permissions

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