Results 1 to 6 of 6

Thread: banking help

  1. #1
    Join Date
    Jul 2008
    Location
    US
    Posts
    104
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default banking help

    im new, so this whole banking thing is confusing me. the functions in the core are messing with me, i swear lol. but im trying to find a banker, and open the bank screen in port phassy. its the bank in the ghost town on the most east side of runescape. i cant figure out how to get it to open it. cause all the function details say they have to go to falador east bank, and ect. so how do i make it open a random bank?

  2. #2
    Join Date
    Mar 2008
    Location
    ::1
    Posts
    915
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    You could use Reflection to walk to a tile in the bank, then use Reflection to find the NPC 'banker', and then use chooseOption to open the bank!

    Post if you need it better explained..

    Records and Types Save Code (and make you look better)
    Quote Originally Posted by Wizzup? View Post
    Is it possible to make Runescape a 2D game with this?... That would greatly simplify... Just about anything.

  3. #3
    Join Date
    Dec 2006
    Posts
    173
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SRL's banking functions do not support the port phassy bank( Im pretty sure ), so you could make a simple procedure like:

    SCAR Code:
    procedure PortPhassyBank;
    begin
      if FindObjTPA(x, y, {Bank booth color}, 10, -1, 20, 20, 10, ['nk', 'bo', 'ot']) Then
      begin
        Mouse(x, y, 2, 2, False);//If it finds the bank booth, then it right clicks
        wait(100 + random(100));
        ChooseOption('uickly');//Chooses option quickly
        FFlag(0);
        wait(2000 + random(500));
      end;
    end;

    I'm not sure if that would work.
    Starting to merchant, if you know of any good clans, PM me please.

  4. #4
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Don't confuse him with code he does not understand.

    I will start out like I did:
    Search for a color, right click the color.

    SCAR Code:
    Procedure MyOpenBank;
    var
      x, y : Integer;
    begin
      if FindColor(x, y, BankColor, MSX1, MSY1, MSX2, MSY2) then
      begin
        Mouse(x, y, 5, 5, False);
        Wait(10);
        ChooseOption('uick');
      end;
    end;

    Now this script will do: Search for a color and save the coords it found in x and y, then it will right click with the mouse() procedure and choose the option uick, witch is a part of Quickly.

  5. #5
    Join Date
    Nov 2007
    Posts
    184
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Finding colour with tolerance is one way.But do take note of which colour you are using and make sure that it is not the same colour as anything else in the bank.Or else you will be clicking on the walls and so on...

    One way to prevent that is to use check uptext before clicking or else use DDTMs or rotated DTMs.

  6. #6
    Join Date
    Jan 2008
    Location
    Ontario, Canada
    Posts
    7,805
    Mentioned
    5 Post(s)
    Quoted
    3 Post(s)

    Default

    Or, do as I did with my fletcher and modify SRL's banking procedure.

    Fool around with the Info and get the right colors .
    Writing an SRL Member Application | [Updated] Pascal Scripting Statements
    My GitHub

    Progress Report:
    13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you 
                        have serious physchological problems
    13:46 <@BenLand100> HE GETS IT!
    13:46 <@BenLand100> HE FINALLY GETS IT!!!!1

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Hermpie's banking proc's and Func's makes banking a piece of a cake!
    By ShowerThoughts in forum Research & Development Lounge
    Replies: 13
    Last Post: 06-11-2008, 03:16 PM
  2. Banking help here
    By issamawan in forum OSR Help
    Replies: 5
    Last Post: 06-11-2008, 01:34 PM
  3. Banking help
    By Zeta in forum OSR Help
    Replies: 11
    Last Post: 10-14-2007, 03:27 PM
  4. Banking!!!!!!!
    By Killerbillbo in forum OSR Help
    Replies: 3
    Last Post: 06-09-2007, 05:35 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
  •