Results 1 to 4 of 4

Thread: Help with banking

  1. #1
    Join Date
    Jun 2013
    Posts
    49
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default Help with banking

    Hey everyone! So I'm trying to use the Warrior Guild Bank using reflection banking. Any help please?
    Here's my code:
    Simba Code:
    procedure BankThings;
    begin
      MakeCompass('N');
      SetAngle(SRL_ANGLE_HIGH);

      If OpenBank('wgb', true, true) then
      begin
      Wait(2000);
      DepositAll;
      Wait(1000);
      Withdraw(0, 0, 1);
      Wait(1000);
      Withdraw(0, 1, 1);
      Wait(1000);
      CloseBank;
      Wait(2000);
      end;
    end;

    Everytime I run the script I get this error:
    Reflection succesfully setup!
    ** Warning in OpenBankQuiet: Unknown bank: wgb **
    ** Warning in OpenBankQuiet: Unknown bank: wgb **

  2. #2
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

    Default

    Quote Originally Posted by Success View Post
    Warrior Guild Bank using reflection banking.
    Reflection has no banking in it, youre using srl-osr.

    OpenBank() which calls OpenBankQuiet() does not support wgb.
    It does also call OpenBankFast() which supports wgb. it would be suggested to use that or a openBankNPC type function.

    warn·ing
    ?wôrniNG
    noun
    a statement or event that indicates a possible or impending danger, problem, or other unpleasant situation.
    "a warning about heavy thunderstorms"
    synonyms: example, deterrent, lesson, caution, exemplar, message, moral More
    cautionary advice.
    "a word of warning—don't park illegally"
    synonyms: caution, advisory, notification, information;
    er·ror
    ?er?r
    noun
    a mistake.
    "spelling errors"
    synonyms: mistake, inaccuracy, miscalculation, blunder, oversight; More
    the state or condition of being wrong in conduct or judgment.
    "the money had been paid in error"
    synonyms: wrongly, by mistake, mistakenly, incorrectly;
    See the difference?

  3. #3
    Join Date
    Jun 2013
    Posts
    49
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    Quote Originally Posted by Turpinator View Post
    Reflection has no banking in it, youre using srl-osr.

    OpenBank() which calls OpenBankQuiet() does not support wgb.
    It does also call OpenBankFast() which supports wgb. it would be suggested to use that or a openBankNPC type function.




    See the difference?
    Thanks for replying so quickly! But I tried to use openBanknpc and openBankFast and they didn't seem to work to well for this bank or npc. I was looking at it and it seems to search by color of the bank npc, this one isn't the right blue or grey which it searches for. So I just used a simple FindObjCustom. Though this works, the functions "DepositAll" and "Withdraw" aren't working either. Is this because reflection isn't working with banking or what?

  4. #4
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

    Default

    works fine.
    Simba Code:
    for i := 0 to random(12) do
      withdraw(random(8), random(6), random(3) + 1);
    depositAll;


    reflection doesnt work with banking because it doesnt have banking.

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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