Results 1 to 7 of 7

Thread: Al-Kharid IronBarz

  1. #1
    Join Date
    Jul 2008
    Location
    Far Off Pot Fields, Nowhere
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Please Delete

    Please delete this thread.

  2. #2
    Join Date
    Jul 2008
    Location
    Far Off Pot Fields, Nowhere
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Reserved

  3. #3
    Join Date
    Jul 2008
    Location
    Far Off Pot Fields, Nowhere
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just tested ..

    I have to fix switch players when i have time tomorrow.
    If you can fix yourself, then enjoy.

  4. #4
    Join Date
    Sep 2007
    Location
    Michigan
    Posts
    3,862
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    My ToCactus works towards banks as well its just ToCactus(false).

    So you could shorten ur ToBank to this however, you should consider to redo this. You Symbolaccuracy positions will always only search at 0.5, also you have no fail safes to break out of this loop. You should have a Timed break out and a Not Loggedin break out.
    SCAR Code:
    Function ToBank: boolean;
    var
      x, y: integer;
    begin
      if ToCactus(false) then
      begin
        repeat
          wait(750 +random(500));
          SymbolAccuracy := 0.5;
          If (FindSymbol(x, y, 'bank')) then
            Mouse(x, y, 1, 3, True);
          SymbolAccuracy := 0.8;
          FFlag(5);
        until (FindSymbol(x, y, 'bank'));
        Result := true;
      end;
    end;
    (Scripts outdated until I update for new SRL changes)
    AK Smelter & Crafter [SRL-Stats] - Fast Fighter [TUT] [SRL-Stats]
    If you PM me with a stupid question or one listed in FAQ I will NOT respond. -Narcle
    Summer = me busy, won't be around much.

  5. #5
    Join Date
    Jul 2008
    Location
    Far Off Pot Fields, Nowhere
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you,
    I'm still confused on how to break after so many minutes..
    There aren't many tut's on it, at least i couldn't find any.

  6. #6
    Join Date
    Sep 2007
    Location
    Michigan
    Posts
    3,862
    Mentioned
    2 Post(s)
    Quoted
    1 Post(s)

    Default

    Here's 2 ways I use. I use second one more though now.

    SCAR Code:
    program new;
    {.include srl/srl.scar}

    procedure Timer1;
    var
      Timer: integer;
    begin
      MarkTime(Timer);
      Writeln('Time 1 Marked');
      Repeat
        //Stuff
        Wait(50);
      until (TimeFromMark(Timer) > 10000);
      Writeln('Times up!');
    end;

    procedure Timer2;
    var
      Timer: integer;
    begin
      Timer := GetSystemTime + 10000;
      Writeln('Time 2 Marked');
      repeat
        //Stuff
        Wait(50);
      until (GetSystemTime > Timer);
      Writeln('Times up!');
    end;

    begin
      Timer1;
      Timer2;
    end.
    (Scripts outdated until I update for new SRL changes)
    AK Smelter & Crafter [SRL-Stats] - Fast Fighter [TUT] [SRL-Stats]
    If you PM me with a stupid question or one listed in FAQ I will NOT respond. -Narcle
    Summer = me busy, won't be around much.

  7. #7
    Join Date
    Jul 2008
    Location
    Far Off Pot Fields, Nowhere
    Posts
    66
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'll try fixing it rep+

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Al Kharid Bar Smelter
    By Richard in forum RS3 Outdated / Broken Scripts
    Replies: 15
    Last Post: 07-23-2008, 01:13 PM
  2. Al Kharid Smelter
    By Bobzilla69 in forum First Scripts
    Replies: 20
    Last Post: 03-25-2008, 09:34 PM
  3. Operation Al Kharid V.1
    By badandymitch in forum RS3 Outdated / Broken Scripts
    Replies: 12
    Last Post: 07-20-2007, 06:37 AM
  4. Al Kharid cooker
    By spermis in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 04-07-2007, 11:48 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
  •