Results 1 to 3 of 3

Thread: Finding bank booth in varrok west

  1. #1
    Join Date
    Oct 2006
    Location
    New Zealand
    Posts
    423
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Finding bank booth in varrok west

    what is the best way to find the bank in varrock west bank? a dtm, bitmap or color? all i need is a something that will walk my player next to the bank booth or find the chords of a bank booth. thanks

  2. #2
    Join Date
    Feb 2007
    Location
    SparklesProd.com
    Posts
    2,406
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    To be honest I find this to be the best procedure.

    It's color based :P

    SCAR Code:
    Procedure OpenMyBank;
    begin
      if not (BankScreen) then
       Lowestangle;
       repeat
          if (FindColorTolerance(x,y,13222597,2,70,515,178,5) or
              FindColorTolerance(x,y,4481644,2,70,515,178,5))then
              Wait(250);
              MMouse(x,y,2,2);
                Wait(250);
                if (IsUpText('Bank booth')=true) then
                Wait(250);
                Mouse(x,y,2,2,false);
                if (ChooseOption(x,y,'quickly')) then
                begin
                wait(250);
                  //InPin(''); //put your pin between ''
                    repeat
                      Wait(100);
                    until (BankScreen);
                end;
        until (BankScreen);
    end;

  3. #3
    Join Date
    Jan 2007
    Posts
    248
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Here's an example of what I use. Getting the bank icon color may be hard though since it's always crowded in that neighborhood...
    SCAR Code:
    program Bank;
    {.include SRL\SRL.scar}
    var BnkCol: integer;
    Function ToBank: Boolean;
     begin
     Wait(2500);
      { may have a hard time with the auto coloring cuz of the people }
      FindSymbolColorIfNeeded('bank', true, BnkCol); //auto colors the symbol
      ToBankers(BnkCol, 4 + random(1), 1 + random(1));//clicks near a yellow dot
     FTWait(10); // waits so the kid can make it to the booth
       OpenBank3; // opens the booth
      If(BankScreen)then //checks if the bank booth is open...
        Result:= True;
     Writeln('Banking Process Working');
    end;

    begin
    setupSRL;
    ActivateClient;
    MouseSpeed:= 15;
    ToBank;
    end.

    Basically the thing that clicks near a banker using the mm is the SRL function ToBankers...
    But for this you need the bank icon color somehow autocolored..
    Code:
    {*******************************************************************************
    procedure ToBankers(var BankColor: Integer; MouseAdjustX, MouseAdjustY: Integer);
    By:
    Description: Find the specified bank color and clicks the nearest yellow dots
    to get closer to the bankers.
    *******************************************************************************}
    
    procedure ToBankers(var BankColor: Integer; MouseAdjustX, MouseAdjustY:
      Integer);
    var
      c, ax, ay, x, y: Integer;
    begin
      if (FindMMColor(x, y, BankColor)) then
      begin
        while c < 30 do
        begin
          c := c + 5;
          if (FindMMColor(x, y, BankColor)) then
          begin
            if (FindColorSpiralTolerance(ax, ay, 195836, x - c, y - c, x + c, y + c,
              10)) then
            begin
              x := ax;
              y := ay;
              break;
            end;
          end;
        end;
        MouseFindFlag(x, y, MouseAdjustX, MouseAdjustY);
        Flag;
        Wait(1000 + Random(100));
      end;
    end;
    My way is better than Sporks

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Varrok West Clay Miner (and Softner)
    By Tv-XxX in forum RS3 Outdated / Broken Scripts
    Replies: 10
    Last Post: 02-28-2009, 12:49 PM
  2. Tv's West Varrok Clay Miner and Softner - [BETA]
    By Tv-XxX in forum RS3 Outdated / Broken Scripts
    Replies: 34
    Last Post: 12-15-2008, 05:28 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
  •