Results 1 to 3 of 3

Thread: Banking Procedures?

  1. #1
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default Banking Procedures?

    wow... i am failing miserably... Please help me with these because they are not working!
    SCAR Code:
    procedure Withdraws;
    var I : Integer;
    begin
      if not LoggedIn then Exit;
      if (CountBarsInInv >= Items.Bars) then Exit;
      if not (Players[CurrentPlayer].Loc = 'Bank') then WalkBank;
      I := 0;
      repeat
        if not BankScreen then
        if OpenBankFast('vwb') then ScreenWait(BankScreen, 8);
        Inc(I);
      until (BankScreen) or (I >= 10);
      I := 0;
      repeat
        FindBar(True, True)
        Wait(1500+random(500));
        Inc(I);
      until (InvFull) or (I >= 8);
      if CloseBank then WalkAnvil;
    end;

    procedure Deposits;
    var I : Integer;
    begin
      if not LoggedIn then Exit;
      if not (Players[CurrentPlayer].Loc = 'Bank') then WalkBank;
      I := 0;
      repeat
        if not OpenBankFast('vwb') then
        if OpenBankReflection('vwb') then WriteLn('Banking');
        Inc(I);
      until (ScreenWait(BankScreen, 10)) or (I >= 10);
      I := 0;
      repeat
        if ScreenWait(BankScreen, 10) then
        Deposit(2, 28, True);
        Inc(I);
      until (HammerOnly) or (I >= 8);
      CloseBank;
      Inc(Loads);
    end;

  2. #2
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    What part isn't working? Not opening bank? Not withdrawing?

    ~Camo
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  3. #3
    Join Date
    Sep 2008
    Location
    Not here.
    Posts
    5,422
    Mentioned
    13 Post(s)
    Quoted
    242 Post(s)

    Default

    blumblebee is helpin me...

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Banking in SRL
    By Raskolnikov in forum OSR Intermediate Scripting Tutorials
    Replies: 7
    Last Post: 12-29-2008, 07:43 AM
  2. 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
  3. Banking Help
    By joeyfeduka in forum OSR Help
    Replies: 3
    Last Post: 03-02-2008, 09:55 PM
  4. banking
    By kufo in forum OSR Help
    Replies: 3
    Last Post: 06-09-2007, 02:46 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
  •