Results 1 to 6 of 6

Thread: need auto help!!

  1. #1
    Join Date
    Jul 2007
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default need auto help!!

    i get this error
    Line 72: [Error] (14886:32): Identifier expected in script C:\DOCUME~1\Owner\LOCALS~1\Temp\VarrockLumberjack V1.5.scar



    /////////////////// Set these if you like /////////////////////
    const
    JADMouseSpeed = true; //recommended. Sets mouse speed to a good pace.
    TurnOffMusic = true; //turn off all sound effects/music on runescape while autoing?
    TheFloorColor = 0; //The color of the floor in the bank (brownish). Set to 0 to have script auto pick the color.
    Run = true; //Do you want the script to run when going to the trees you are chopping?
    Dist = 1; //For Willow walking. set at 0, 1 or 2. 0 will be the most reliable, making almost perfect walking,
    //1 may be a little less reliable, but faster walking, 2 will be less reliable, but faster. Make it
    //Lower if the script is getting lost after just a couple trips..
    //You may want to set this to 2 or 3 if running though!
    {************************************************* *************************

    ----------> Setup Players here <----------

    ************************************************** ************************}

    procedure DeclarePlayers;
    begin
    HowManyPlayers := 1; //Number of PLAYERS. active or not.

    !@!@!
    (ERROR HERE LINE 72!!!!!) NumberOfPlayers(HowManyPlayers)= 2;
    !@!@!@

    CurrentPlayer := 0; //Player to start on.

    //set all user names, passwords and nicks correctly please.

    Players[0].Name := 'xxtigrblood';
    Players[0].Pass := 'actual password here';
    Players[0].Nick := '';
    Players[0].Boolean1 := True; //Set to true if you want to do the highest possible tree always. If set to true, will ignore String1.
    Players[0].Boolean2 := True; //Is the axe weilded? MUST be set correctly!
    Players[0].String1 := 'trees'; //What to chop? trees, oaks, willows or yews.
    Players[0].Integer1 := 20; //How many loads to do before switching players?
    Players[0].String2 := '0000'; //Bank pin if any
    Players[0].Active := True;


    is there any thing wrong with this

  2. #2
    Join Date
    Jan 2007
    Location
    Illinois.. >.<
    Posts
    1,158
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It should only be this on line 72:
    Code:
    NumberOfPlayers(HowManyPlayers);

  3. #3
    Join Date
    Jul 2007
    Location
    England
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well...

    You put,

    SCAR Code:
    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1; //Number of PLAYERS. active or not.
      NumberOfPlayers(HowManyPlayers)= 2;
      CurrentPlayer := 0; //Player to start on.

    After,

    SCAR Code:
    NumberOfPlayers(HowManyPlayers)

    There shouldn't be =2 because you have already declared that variable on the line above.

    So this is how it should look,

    SCAR Code:
    procedure DeclarePlayers;
    begin
      HowManyPlayers := 1; //  Number of PLAYERS. active or not.
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0; //  Player to start on.

    @itschris917, Lol I guess we posted at the same time and you beat me

    -Nitro

  4. #4
    Join Date
    Jan 2007
    Location
    Illinois.. >.<
    Posts
    1,158
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I beat you

  5. #5
    Join Date
    Jul 2007
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    okay tyvm i will go check and see what else is wrong or if i got it right lol

  6. #6
    Join Date
    Jan 2007
    Location
    Illinois.. >.<
    Posts
    1,158
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nope, you posted 2:41. I posted at 2:40

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Your Full Guide to Preparing to Auto [SCAR, SRL, SVN, HowTo Auto]
    By Runescapian321 in forum Outdated Tutorials
    Replies: 71
    Last Post: 10-11-2008, 03:46 AM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. need a good script , auto miner auto banker plz!!
    By samuel in forum RS3 Outdated / Broken Scripts
    Replies: 27
    Last Post: 11-19-2007, 08:46 AM
  4. Help with auto trade/ auto talker script
    By logik in forum OSR Help
    Replies: 5
    Last Post: 03-16-2007, 11:16 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
  •