Results 1 to 3 of 3

Thread: Unknown Identifier

  1. #1
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default Unknown Identifier

    Code:
    procedure WaitWhilstChopping;
    begin
      while (ChopTree) do
      begin
       AntiBan;
      end;
    end;
    I have added the

    Code:
    procedure AntiBan;
    begin
      case random(100) of
        0: RandomRClick;
        1: BoredHuman;
        2: HoverSkill('WoodCutting', False);
        3: AlmostLogout;
      end;
    end;
    But it still says unknown identifier?
    Jus' Lurkin'

  2. #2
    Join Date
    Jun 2007
    Location
    Wednesday
    Posts
    2,446
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Place
    SCAR Code:
    procedure AntiBan; Forward;
    Just above your WaitWhilstChopping procedure. All that does is tell the script to go forward to the antiban procedure before doing WaitWhilstChopping. Alternatively, you can just cut and paste the AntiBan procedure above your WaitWhilstChopping procedure (but using forward makes your script look cooler).
    By reading this signature you agree that mixster is superior to you in each and every way except the bad ways but including the really bad ways.

  3. #3
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    Hah, thanks.
    Jus' Lurkin'

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Unknown Identifier.
    By iunseeni in forum OSR Help
    Replies: 2
    Last Post: 11-04-2007, 07:36 PM
  2. Unknown Identifier?!
    By ~PuRePoWeR~ in forum OSR Help
    Replies: 1
    Last Post: 05-15-2007, 08:37 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
  •