1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Question Bot Doesnt Bank! Help Please.

Discussion in 'Client & Site Support' started by Lyrcon, Sep 23, 2015.

  1. Lyrcon

    Joined:
    Apr 22, 2015
    Messages:
    178
    Likes Received:
    37
    Hello.

    So when i try to bank my items the bot is stuck on this problem :
    upload_2015-9-23_20-5-19.png
    Is there a way to remove that Backpack Currently Unavailable, so that the bot doesnt get stuck again.
     
  2. qverkk

    Joined:
    Sep 22, 2015
    Messages:
    1,603
    Likes Received:
    381
    Oh you meant that, rofl. It's just runescape as the way it is.

    -Does it open bank? :
    -Does it deposit/withdraw?:
    -Does it close bank?:
     
    Lyrcon likes this.
  3. Lyrcon

    Joined:
    Apr 22, 2015
    Messages:
    178
    Likes Received:
    37
    Yea, But the problem is the bot opens up the bank and just dont deposit the items from my inventory into the bank.
    Then i have to do it myself and re launch the bot.
     
  4. qverkk

    Joined:
    Sep 22, 2015
    Messages:
    1,603
    Likes Received:
    381
    Code (Text):
    1. private boolean inventoryItem(){
    2.         if(Inventory.contains(25547)){
    3.             return true;
    4.         }
    5.         return false;
    6.     }
    7.  
    8. private boolean bank(){
    9.         if(Bank.open()){
    10.             if(Bank.depositAllExcept(1734)){
    11.                 if(Bank.withdraw("Spider silk", 27)){
    12.                     if(Bank.close()) {
    13.                         return true;
    14.                     }
    15.                 }
    16.             }
    17.         }
    18.  
    19. @Override
    20.     public void onLoop() {
    21. if(!inventoryItem()){
    22.             bank();
    23.         }
    24. }
    Try to edit for your needs ;)
     
  5. Range inc

    Joined:
    Sep 23, 2015
    Messages:
    12
    Likes Received:
    0
    wth ?

    Code (Text):
    1.  
    2. //Shorter.
    3. private boolean inventoryItem(){
    4.         return Inventory.contains(25547);
    5.     }
    6.  
    7. //This is just firing actions without checking them? I suggest writing a method that checks whether the bank is open, ..... u get the point.
    8. private boolean bank(){
    9.         if(Bank.open()){
    10.             if(Bank.depositAllExcept(1734)){
    11.                 if(Bank.withdraw("Spider silk", 27)){
    12.                     if(Bank.close()) {
    13.                         return true;
    14.                     }
    15.                 }
    16.             }
    17.         }
    18.  
    19. @Override
    20.     public void onLoop() {
    21. if(!inventoryItem()){
    22.             bank();
    23.         }
    24. }
    25.  
     
  6. Lyrcon

    Joined:
    Apr 22, 2015
    Messages:
    178
    Likes Received:
    37
    Well the Strange Thing is In RS3 I didnt have this Problem, Now in DS i just cant do fishing becuz the bot wants to bank from the unavailable Backpack xD
     
  7. Mind Blow

    Joined:
    Aug 31, 2015
    Messages:
    18
    Likes Received:
    0
    What if u set to legacy mode ?
     
  8. Lyrcon

    Joined:
    Apr 22, 2015
    Messages:
    178
    Likes Received:
    37
    Yea Than it works better, But the problem then is that the MiniMap is too small, and he is walking like a retard to the spots :p

    But i will use Legacy Mode For Now. Thank you all :) !
     
  9. qverkk

    Joined:
    Sep 22, 2015
    Messages:
    1,603
    Likes Received:
    381
    Can you show me your fishing code? And walking to fishing spot
     
  10. Arbiter

    Arbiter Mod Automation

    Joined:
    Jul 26, 2013
    Messages:
    2,937
    Likes Received:
    1,266
    If this is DarkScape it is potentially fixed in the latest update.
    --- Double Post Merged, Sep 23, 2015, Original Post Date: Sep 23, 2015 ---
    Please confirm.
     
  11. Lyrcon

    Joined:
    Apr 22, 2015
    Messages:
    178
    Likes Received:
    37
    I will Re-Download the Client And See How That Goes :)
     

Share This Page

Loading...