Results 1 to 4 of 4

Thread: Whats wrong here?

  1. #1
    Join Date
    May 2007
    Location
    NSW, Australia
    Posts
    2,823
    Mentioned
    3 Post(s)
    Quoted
    25 Post(s)

    Default Whats wrong here?

    Umm i was doing a loop for a script.

    but it says
    Identifier expected in script
    Im probly blind, but im so tired atm i need to sleep.

    SCAR Code:
    begin
      Setup;
       repeat
        WalkToYew;
        repeat
         if not IsCutting then
         begin
           CutYew;
           AttachHead;
           FindHead;
            end else
             begin
                ProgressReport;
                Signature;
                AntiBanSystem;
                IsCutting;
                EntFinder;
                FTwait(1);
                  FindRandoms;
                FTwait(1);
                end;
                FindRandoms;

             until(invfull);
             makecompass('S');
             WalktoBank;
             end;
         until(false)

    end.

    Thanks, Ben.

  2. #2
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    count your ends
    SCAR Tutorials: The Form Tutorial | Types, Arrays, and Classes
    Programming Projects: NotePad | Tetris | Chess


  3. #3
    Join Date
    Jun 2006
    Location
    USA
    Posts
    1,828
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    until(invfull);
    makecompass('S');
    WalktoBank;
    end;
    Must be:
    end;
    until(invfull);
    makecompass('S');
    WalktoBank;

  4. #4
    Join Date
    May 2007
    Location
    NSW, Australia
    Posts
    2,823
    Mentioned
    3 Post(s)
    Quoted
    25 Post(s)

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [PHP] whats wrong with this.
    By XcanadamanX in forum General
    Replies: 14
    Last Post: 01-21-2008, 11:40 PM
  2. Whats Wrong???
    By bilbobaggins in forum OSR Help
    Replies: 12
    Last Post: 04-10-2007, 10:05 AM
  3. Replies: 8
    Last Post: 03-23-2007, 04:20 PM
  4. Can someone tell me whats wrong with this?
    By Hey321 in forum OSR Help
    Replies: 5
    Last Post: 12-17-2006, 09:49 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
  •