Results 1 to 21 of 21

Thread: [Error]: comma (',') expected in script

  1. #1
    Join Date
    Jan 2008
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [Error]: comma (',') expected in script

    The Script

    SCAR Code:
    program AbsTrACtAutoAlcherSmartVersion;//This is my very first script but I believe it is a pretty good one.

    {///////////////////////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\}
    { Title:           AbsTrACtAutoAlcher                                                   }
    { Version:         1.00 SMART                                                           }
    { Author:          AbsTrACt'^.|                                                         }
    { Settings:        I don't use colors in this script so it's the same...                }
    { Recommendation:  Use it in Barrows Tombs as there are no randoms there                }
    {although you may find some persons there and I didn't made an AutoResponder yet        }
    { SetUp Lines:                                                                          }
    {///////////////////////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\}

    {.include SRL\SRL\Misc\Smart.scar}
    {.include SRL\SRL.scar}
    {.include SRL\SRL\misc\Users.scar}
    var
    alchs: integer;

    {/////////////////////////\\\\\\\\\\\\\\\\\\\\\\\}
    {                   Begin SetUp                  }
    {\\\\\\\\\\\\\\\\\\\\\\\\\///////////////////////}
    const

      RunD = 'n'; //Direction to run from Attacking Random (n, s, w, e)
      TurnC = 'n'; //Where to turn compass if attacking random comes (n, s, w, e)
      ItemToAlchName = 'yew longbow'; //Name of the item you are alching (for antiban)
      Alchstodo = 1000; //How many alchs the bot should do?

    Procedure DeclarePlayers; // this procedure is used to log players in
     begin
         HowManyPlayers  :=1;               // Set Number of Players here.
         NumberOfPlayers(HowManyPlayers);   // Sets the Players Array Length;
         CurrentPlayer:=0;                // CurrentPlayer = Array Index

         Players[0].Name :=-4 Small letters of your username
         Players[0].Active:=True;//Player in use or not in use (True for in use, False for not in use)

    end;
    {/////////////////////////\\\\\\\\\\\\\\\\\\\\\\\}
    {                     End SetUp                  }
    {\\\\\\\\\\\\\\\\\\\\\\\\\///////////////////////}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {/////////////////////////\\\\\\\\\\\\\\\\\\\\\\\}
    {                Do Not Touch Below              }
    {\\\\\\\\\\\\\\\\\\\\\\\\\///////////////////////}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}

    procedure Randoms;
    begin
      FindTalk; //finds talkin randoms
      FindNormalRandoms; //finds normal randoms
      SolveChatRandom; //solves chat randoms
      FindLamp('Magic'); //solves lamp and then choses a skill to update
      SolvePinball; //solves pinball random
      DwarfItem; //dropes dwarf items
      if(FindFight)then //runs away from fight
     begin
      MakeCompass('n');
      RunTo(RunD, True);
      Wait(3500 +Random(3000));
      RunTo(RunD, True);
     end;
    end;

    procedure AntiBan;
    begin
      case Random(5) of

        0: begin

        Wait(3571+(random(550)));
        RandomRClick;
        Wait(3137+(random(751)));
        Randoms;
        Mouse(741,186,10,10,true);
        end;

        1: begin

        Wait (3137+(random(1350)));
        HoverSkill('Magic', False);
        Wait (3137+(random(711)));
        Randoms;
        Mouse(741,186,10,10,true);
        end;

        2: begin

        Wait (3137+(random(1500)));
        RandomMovement;
        Wait (3137+(random(771)));
        Randoms;
        Mouse(741,186,10,10,true);
       end;

        3: begin

        Wait (3137+(random(1250)));
        BoredHuman;
        Wait (3137+(random(747)));
        Randoms;
        Mouse(741,186,10,10,true);
       end;

        4: begin

        Wait (3137+(random(2500)));
        AlmostLogout;
        Wait (3137+(random(814)));
        Randoms;
        Mouse(741,186,10,10,true);
      end;
      end;
    end;

    procedure Report;
    begin
     Writeln('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
     Writeln('| AbsTrACt Auto Alcher Report! Feel free to post');
     Writeln('| Alched '+ IntToStr(Alchs) + ' ' + ItemToAlchName + 's.');
     Writeln('| Worked for ' + TimeRunning);
     Writeln('| Exp gained '+ IntToStr(alchs*65));
     Writeln('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
     Writeln('Made By AbsTrACt!');
    end;

    procedure Finished;
    begin
     if (alchs = alchstodo) then
      begin
       Logout;
       report;
      end;
    end;

    procedure Alch;
    begin
    Mouse(741,186,10,10,true);
     repeat
      Mouse(567,356,5,5,true);
       Wait(500+random(150));
       Mouse(577,371,10,10,true);
       Wait(2000+random(500));
       Case random(7) of
       0:Wait(150+(random(376)));
       1:Wait(55+(random(10)));
       2:Wait(0+(random(250)));
       3:AntiBan;
       4:Wait(0+(random(150)));
       5:Wait(550+(random(750)));
       end;
          Finished;
      until alchs=alchstodo;
    end;

    Procedure Setup;
    begin
    smartSetup('world158', False, True);
    While Not (SmartReady) Do
    Wait(100);
    SetTargetDC(SmartGetDC);
    If Not (LoggedIn) Then
    While Not (SmartGetColor(386, 249) = 65535) Do
    Wait(100);
    SetupSRL;;
      wait(1000)
      ActivateClient;
      wait(1000)
    end;

    begin
    SetupSRL;
    Setup
      DeclarePlayers;
        Alch;
        end.

    And another error which is:

    ** Warning in GameTab: 4 does not exist**

    And the cursor plays around the area I highlighted in this pic:



    Anyone knows what I did wrong?

  2. #2
    Join Date
    Jan 2008
    Location
    Stanford, CA
    Posts
    329
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    u forgot a lotta parenthesises on your wait functions

    SCAR Code:
    Wait(3571+(random(550)));//needed 3
        RandomRClick;
        Wait(3137+(random(751));//needed 3

    that was wat caused ur comma error. There are a couple more

    but dude all u needa do is this

    SCAR Code:
    Wait(3000+random(400));//thats all and u dont needa put the base Wait as a randomized number

  3. #3
    Join Date
    Jan 2008
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by freakymonkey View Post
    u forgot a lotta parenthesises on your wait functions

    SCAR Code:
    Wait(3571+(random(550)));//needed 3
        RandomRClick;
        Wait(3137+(random(751));//needed 3

    that was wat caused ur comma error. There are a couple more

    but dude all u needa do is this

    SCAR Code:
    Wait(3000+random(400));//thats all and u dont needa put the base Wait as a randomized number
    Yeah I know just clicked a couple of numbers lol. And I get a new error now. Help me again please (this is my very first script).

  4. #4
    Join Date
    Nov 2007
    Posts
    437
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well what is the new error lol?

  5. #5
    Join Date
    Jan 2008
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Dusk412 View Post
    Well what is the new error lol?
    I edited the post and the error is now in the first post. Check there.

  6. #6
    Join Date
    Jan 2008
    Location
    Stanford, CA
    Posts
    329
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    you probably didnt put an extra 'end'. i dont know the exact line since the line numbers dont show on scar tags. Remember that 'case' is the equivalent of a 'begin'


    rep if i helped

  7. #7
    Join Date
    Jan 2008
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by freakymonkey View Post
    you probably didnt put an extra 'end'. i dont know the exact line since the line numbers dont show on scar tags. Remember that 'case' is the equivalent of a 'begin'


    rep if i helped
    I already though it was that added another one and didn't help...

    SCAR Code:
    procedure Alch;
    begin
    Mouse(741,186,10,10,true);
     repeat
      Mouse(567,356,5,5,true);
       Wait(500+random(150));
       Mouse(577,371,10,10,true);
       Wait(2000+random(500));
       Case random(7) of
       0:Wait(150+(random(376)));
       1:Wait(55+(random(10)));
       2:Wait(0+(random(250)));
       3:AntiBan;
       4:Wait(0+(random(150)));
       5:Wait(550+(random(750)));
       end;
    end; //this is line 140!
    end;

    I'll highlight the line in this post. And I'll rep anyone who helps.

  8. #8
    Join Date
    Nov 2007
    Posts
    437
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    you have a repeat on line 127 and to end that you need an until somewhere. Like this:

    SCAR Code:
    repeat
     Wait(500+random(150));
    until(false);

    This will repeat that wait statement over and over forever. I do not recommend forever though unless you use failsafes.

    Edit: And one less end too. you end repeats with untils.

    Edit: Your next error after that is in line 147 or something
    SCAR Code:
    Writeln('| Alched '+ IntToStr(Alchs) + ' ' + ItemToAlchName + 's.');

    You need to declare the variable Alchs at the beginning somewhere like this:

    SCAR Code:
    var
      Alchs : Integer;

    Edit: I rewrote the Alch procedure without any errors (I think) and A good repeat, until statement. It will run until you hit f12.

    SCAR Code:
    procedure Alch;
    begin
    Mouse(741,186,10,10,true);
     repeat
      Mouse(567,356,5,5,true);
       Wait(500+random(150));
       Mouse(577,371,10,10,true);
       Wait(2000+random(500));
       Case random(7) of
       0:Wait(150+(random(376)));
       1:Wait(55+(random(10)));
       2:Wait(0+(random(250)));
       3:AntiBan;
       4:Wait(0+(random(150)));
       5:Wait(550+(random(750)));
       end;
      until(IsFKeyDown(12));
    end;

  9. #9
    Join Date
    Jul 2007
    Location
    Ohio
    Posts
    1,103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    procedure Alch;
    begin
    Mouse(741,186,10,10,true);
     repeat
      Mouse(567,356,5,5,true);
       Wait(500+random(150));
       Mouse(577,371,10,10,true);
       Wait(2000+random(500));
       Case random(7) of
       0:Wait(150+(random(376)));
       1:Wait(55+(random(10)));
       2:Wait(0+(random(250)));
       3:AntiBan;
       4:Wait(0+(random(150)));
       5:Wait(550+(random(750)));
       end;
     until//whatever you want it to be.
    end;

    I took out an extra end and put in an until. It will repeat until whenever you declare it to stop.
    Edit**Dusk412 beat me

  10. #10
    Join Date
    Jan 2008
    Location
    Stanford, CA
    Posts
    329
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    like dusk said you shouldnt have an endless loop and for every 'repeat' there has to be an 'until'.

    SCAR Code:
    procedure Move;

    var
    She: integer;

    begin
      repeat
         She:=She+1;
         MMouse(x,y,1,1);
         Wait(30+random(40));
      until(She=5);
    end;

  11. #11
    Join Date
    Nov 2007
    Posts
    437
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I fixed up all your errors that way if you are still getting problems you may compare

    Edit: I will keep checking back but if you ever need more help, I am not a pro (yet) but I will help you again just send me a PM or anything.

    SCAR Code:
    program AbsTrACtAutoAlcherSmartVersion;//This is my very first script but I believe it is a pretty good one.

    {///////////////////////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\}
    { Title:           AbsTrACtAutoAlcher                                                   }
    { Version:         1.00 SMART                                                           }
    { Author:          AbsTrACt'^.|                                                         }
    { Settings:        I don't use colors in this script so it's the same...                }
    { Recommendation:  Use it in Barrows Tombs as there are no randoms there                }
    {although you may find some persons there and I didn't made an AutoResponder yet        }
    { SetUp Lines:                                                                          }
    {///////////////////////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\}

    {.include SRL\SRL\Misc\Smart.scar}
    {.include SRL\SRL.scar}
    {.include SRL\SRL\misc\Users.scar}

    {/////////////////////////\\\\\\\\\\\\\\\\\\\\\\\}
    {                   Begin SetUp                  }
    {\\\\\\\\\\\\\\\\\\\\\\\\\///////////////////////}
    const

      RunD = 'n'; //Direction to run from Attacking Random (n, s, w, e)
      TurnC = 'n'; //Where to turn compass if attacking random comes (n, s, w, e)
      ItemToAlchName = 'yew longbow'; //Name of the item you are alching (for antiban)
      Alchstodo = 1000; //How many alchs the bot should do?

    var    // Dusk412 Added This
      Alchs : Integer;

    Procedure DeclarePlayers; // this procedure is used to log players in
     begin
         HowManyPlayers  :=1;               // Set Number of Players here.
         NumberOfPlayers(HowManyPlayers);   // Sets the Players Array Length;
         CurrentPlayer:=0;                // CurrentPlayer = Array Index

         Players[0].Name :='username';//Your account username
         Players[0].Pass :='pass';//Your account password
         Players[0].Nick :='ser';//3-4 Small letters of your username
         Players[0].Active:=True;//Player in use or not in use (True for in use, False for not in use)

    end;
    {/////////////////////////\\\\\\\\\\\\\\\\\\\\\\\}
    {                     End SetUp                  }
    {\\\\\\\\\\\\\\\\\\\\\\\\\///////////////////////}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {/////////////////////////\\\\\\\\\\\\\\\\\\\\\\\}
    {                Do Not Touch Below              }
    {\\\\\\\\\\\\\\\\\\\\\\\\\///////////////////////}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}
    {~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~}

    procedure Randoms;
    begin
      FindTalk; //finds talkin randoms
      FindNormalRandoms; //finds normal randoms
      SolveChatRandom; //solves chat randoms
      FindLamp('Magic'); //solves lamp and then choses a skill to update
      SolvePinball; //solves pinball random
      DwarfItem; //dropes dwarf items
      if(FindFight)then //runs away from fight
     begin
      MakeCompass('n');
      RunTo(RunD, True);
      Wait(3500 +Random(3000));
      RunTo(RunD, True);
     end;
    end;

    procedure AntiBan;
    begin
      case Random(5) of

        0: begin

        Wait(3571+(random(550)));
        RandomRClick;
        Wait(3137+(random(751)));
        Randoms;
        Mouse(741,186,10,10,true);
        end;

        1: begin

        Wait (3137+(random(1350)));
        HoverSkill('Magic', False);
        Wait (3137+(random(711)));
        Randoms;
        Mouse(741,186,10,10,true);
        end;

        2: begin

        Wait (3137+(random(1500)));
        RandomMovement;
        Wait (3137+(random(771)));
        Randoms;
        Mouse(741,186,10,10,true);
       end;

        3: begin

        Wait (3137+(random(1250)));
        BoredHuman;
        Wait (3137+(random(747)));
        Randoms;
        Mouse(741,186,10,10,true);
       end;

        4: begin

        Wait (3137+(random(2500)));
        AlmostLogout;
        Wait (3137+(random(814)));
        Randoms;
        Mouse(741,186,10,10,true);
      end;
      end;
    end;

    procedure Alch;   //Dusk412 Fixed Up This
    begin
    Mouse(741,186,10,10,true);
     repeat
      Mouse(567,356,5,5,true);
       Wait(500+random(150));
       Mouse(577,371,10,10,true);
       Wait(2000+random(500));
       Case random(7) of
       0:Wait(150+(random(376)));
       1:Wait(55+(random(10)));
       2:Wait(0+(random(250)));
       3:AntiBan;
       4:Wait(0+(random(150)));
       5:Wait(550+(random(750)));
       end;
      Alchs := Alchs + 1;
      until((Alchs = Alchstodo) or (IsFKeyDown(12)));  //To End Loop Either Alch Hoewever Many Times Or Hit F12
    end;

    procedure Report;
    begin
     Writeln('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
     Writeln('| AbsTrACt Auto Alcher Report! Feel free to post');
     Writeln('| Alched '+ IntToStr(Alchs) + ' ' + ItemToAlchName + 's.');
     Writeln('| Worked for ' + TimeRunning);
     Writeln('| Exp gained '+ IntToStr(alchs*65));
     Writeln('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
     Writeln('Made By AbsTrACt!');
    end;

    Procedure Setup;
    begin
    smartSetup('world158', False, True);
    While Not (SmartReady) Do
    Wait(100);
    SetTargetDC(SmartGetDC);
    If Not (LoggedIn) Then
    While Not (SmartGetColor(386, 249) = 65535) Do
    Wait(100);
    SetupSRL;;
      wait(1000)
      ActivateClient;
      wait(1000)
    end;

    begin
    SetupSRL;
      DeclarePlayers;
        Alchs := 0; //Dusk412 Added this
        Alch;
        Report;

    end.

    Edit: I forgot a parenthesis but I fixed it hehe.

  12. #12
    Join Date
    Jan 2008
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Dusk412 View Post
    you have a repeat on line 127 and to end that you need an until somewhere. Like this:

    SCAR Code:
    repeat
     Wait(500+random(150));
    until(false);

    This will repeat that wait statement over and over forever. I do not recommend forever though unless you use failsafes.

    Edit: And one less end too. you end repeats with untils.

    Edit: Your next error after that is in line 147 or something
    SCAR Code:
    Writeln('| Alched '+ IntToStr(Alchs) + ' ' + ItemToAlchName + 's.');

    You need to declare the variable Alchs at the beginning somewhere like this:

    SCAR Code:
    var
      Alchs : Integer;

    Edit: I rewrote the Alch procedure without any errors (I think) and A good repeat, until statement. It will run until you hit f12.

    SCAR Code:
    procedure Alch;
    begin
    Mouse(741,186,10,10,true);
     repeat
      Mouse(567,356,5,5,true);
       Wait(500+random(150));
       Mouse(577,371,10,10,true);
       Wait(2000+random(500));
       Case random(7) of
       0:Wait(150+(random(376)));
       1:Wait(55+(random(10)));
       2:Wait(0+(random(250)));
       3:AntiBan;
       4:Wait(0+(random(150)));
       5:Wait(550+(random(750)));
       end;
      until(IsFKeyDown(12));
    end;
    Thanks. I rewrote a little of the script and added a finish procedure so it will run until it alch's all the items that it has to alch... but I get a new error (wow another!!). I edited the first post with him. Help me with it please.

  13. #13
    Join Date
    Nov 2007
    Posts
    437
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    On that new error you have **GameTab4** or whatever. Are you already logged in or not?

    Edit: You do not tell the script to log in anywhere I don't think. That is why it can't find Game Tab 4 (inventory), you aren't in game yet lol. In your Setup Procedure add this

    SCAR Code:
    LoginPlayer;

  14. #14
    Join Date
    Jan 2008
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Dusk412 View Post
    On that new error you have **GameTab4** or whatever. Are you already logged in or not?
    I'm not logged in because the script doesn't log in... it simply plays around the place I marked in the printscreen. Doesn't log in or anything.

  15. #15
    Join Date
    Sep 2006
    Location
    include srl/srl.scar ( aussie)
    Posts
    2,875
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    take your pass out of the first post!!!!!!!!!!!!!!!!!!!!!!!!!

    Edit: and to fix it all , in your mainloop you have

    SCAR Code:
    begin
    SetupSRL;
      DeclarePlayers;
        Alchs := 0; //Dusk412 Added this
        Alch;
        Report;
     
    end.

    simply needs to be changed to

    SCAR Code:
    begin
    SetupSRL;
      DeclarePlayers;
      LoginPlayer;
        Alchs := 0; //Dusk412 Added this
        Alch;
        Report;
     
    end.

  16. #16
    Join Date
    Nov 2007
    Posts
    437
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I saw that too, I hope it is just an auto bot noob account so no1 steals it

    Also I edited that other post 2 up to solve ur error.

  17. #17
    Join Date
    Jan 2008
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by nicbaz View Post
    take your pass out of the first post!!!!!!!!!!!!!!!!!!!!!!!!!
    Ups thanks. Tyvm really!

  18. #18
    Join Date
    Nov 2007
    Posts
    437
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey how's it coming. Gotta keep me up to date or I will keep checking back every 30 seconds for the next week lol...

  19. #19
    Join Date
    Jan 2008
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Dusk412 View Post
    Hey how's it coming. Gotta keep me up to date or I will keep checking back every 30 seconds for the next week lol...
    It works good but still has an error (rofl). It alch's a couple of longs and then when it does the AntiBan it gives me this error:

    ** Warning in GameTab: 4 does not exist**

    Help again please?

  20. #20
    Join Date
    Nov 2007
    Posts
    437
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Is the script going into a bank at all?
    Is the script ever logging out then back in?
    Edit: I'm going to eat dinner. I'll check back later.

  21. #21
    Join Date
    Jan 2008
    Posts
    51
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Dusk412 View Post
    Is the script going into a bank at all?
    Is the script ever logging out then back in?
    No bank (I alch at my home) and the script isn't made to log out and log in again (I will probably add it later but it's not on yet)...

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. comma expected in script
    By Awkwardsaw in forum OSR Help
    Replies: 16
    Last Post: 05-03-2008, 02:48 PM
  2. comma ',' expected? :S
    By svarrio in forum OSR Help
    Replies: 4
    Last Post: 10-24-2007, 05:59 AM
  3. Replies: 4
    Last Post: 05-30-2007, 04:01 PM
  4. Replies: 9
    Last Post: 04-16-2007, 08:46 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
  •