Results 1 to 7 of 7

Thread: Add Gamers' Grotto to OpenBankChestEdge

  1. #1
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default Add Gamers' Grotto to OpenBankChestEdge

    Simba Code:
    SRL_BANK_GG :      Info := [MSCX     , MSCY,      5921630,  9 ,   0.47, 0.08,  50,   True ,   10, 10,   'n'];

    There you go ^.
    Only ACAed it once on one world, but it should be fine.
    I also noticed all other chests have EXACT SAME INFO (as each other, not mine), so someone should test and see if it works down there too.

  2. #2
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by YoHoJo View Post
    Simba Code:
    SRL_BANK_GG :      Info := [MSCX     , MSCY,      5921630,  9 ,   0.47, 0.08,  50,   True ,   10, 10,   'n'];

    There you go ^.
    Only ACAed it once on one world, but it should be fine.
    I also noticed all other chests have EXACT SAME INFO (as each other, not mine), so someone should test and see if it works down there too.
    Wow I didn't know there was a bank chest there. This must be the only bank chest for F2P. Good spot for super-heaters.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  3. #3
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    Wanna fix this up and add it? I know it's not the standard format of a bank function but I just made it.. and it's missing too..

    Simba Code:
    Function OpenBankZanaris :Boolean;
    var
      B: TBox;
      TPA: TPointArray;
      ATPA, ATPA2: T2DPointArray;
      CTS, L, X, Y, I, T: Integer;
    begin
      Result := (LoggedIn and BankScreen);
      if (Result) then
        Exit
      else
        if (Length(Players) > 0) then
          if ((PinScreen) and (Players[CurrentPlayer].Pin <> '')) then
            InPin(Players[CurrentPlayer].Pin);

      CTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.15, 0.50);
      FindColorsTolerance(TPA, 9872045, MSX1, MSY1, MSX2, MSY2, 5);  //Bank Booth color..
      SetColorSpeed2Modifiers(0.2, 0.2);

      if Length(TPA) < 1 then
        Exit;
      ATPA := TPAtoATPAEx(TPA, 20, 20);
        L := High(ATPA);
        SetArrayLength(ATPA2, L+1);
        for i := 0 to L do
        begin
          B := GetTPABounds(ATPA[I]);
          with B do
          begin
            ColorToleranceSpeed(2);
            begin
              SetColorSpeed2Modifiers(0.02, 3.08);
              FindColorsTolerance(ATPA2[I], 7920871, B.X1, B.Y1, B.X2, B.Y2, 9);     //Yellow Colour on booth..
              ColorToleranceSpeed(CTS);
            end;
            ColorToleranceSpeed(CTS);

            Result := (Length(ATPA2[i]) > 0);
            if Result then
            begin
              MiddleTPAEx(ATPA2[i], X, Y);
              MMouse(X, Y, 0, 0);
              wait(500);
              if isUptextMultiCustom(['Bank', 'Booth', 'ank', 'ooth']) then
              begin
                ClickMouse2(MOUSE_RIGHT);
                ChooseOptionMulti(['uickly', 'uick', 'ickly', 'ckl', 'se-q']);
                t := (GetSystemTime + 5000);
                repeat
                  if (BankScreen) or (PinScreen) then
                  begin
                    Result := true;
                    Break;
                  end;
                  Wait(50);
                until(GetSystemTime > t);

                if (Length(Players) > 0) then
                  if ((PinScreen) and (Players[CurrentPlayer].Pin <> '')) then
                    InPin(Players[CurrentPlayer].Pin);

                  Result := (BankScreen) or (PinScreen);
              end;
              Exit;
            end;
          end;
        end;
    end;
    I am Ggzz..
    Hackintosher

  4. #4
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    @ggzz: You should just be able to add it to OpenBank or OpenBankGlass, one of those functions. You shouldn't need a separate one.

  5. #5
    Join Date
    Sep 2007
    Location
    Australia, NSW
    Posts
    934
    Mentioned
    6 Post(s)
    Quoted
    145 Post(s)

    Default

    Quote Originally Posted by YoHoJo View Post
    Simba Code:
    SRL_BANK_GG :      Info := [MSCX     , MSCY,      5921630,  9 ,   0.47, 0.08,  50,   True ,   10, 10,   'n'];

    There you go ^.
    Only ACAed it once on one world, but it should be fine.
    I also noticed all other chests have EXACT SAME INFO (as each other, not mine), so someone should test and see if it works down there too.
    When I added the bank chests, I tested them all using the same colour properties and they all worked as I show here: http://villavu.com/forum/showpost.ph...4&postcount=21

    I found out before that there's also a bank chest in Duel Arena You could add that one too?

    INACTIVE
    How-to: Make S.M.A.R.T. less laggy

    Sell me your Maple Shieldbows (u)! Up to 95gp ea!

    My Scripts:
    Ivy Chopper Ultra [RS3] | Fantastic Fletcher [RS3]
    99 x78 | 99 x10 | 99 x2 | 99 x12


    Use the REPORT tags when posting progress reports to make life easier (:
    [REPORT]Put progress report in here![/REPORT]

    Super Savvy Smither V1.06Cool Classy Cooker V1.02 [EoC]

  6. #6
    Join Date
    Apr 2008
    Location
    Marquette, MI
    Posts
    15,252
    Mentioned
    138 Post(s)
    Quoted
    680 Post(s)

    Default

    Added to the latest version.

  7. #7
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Sweet you rock!

Thread Information

Users Browsing this Thread

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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •