Jump to content
Frequently Asked Questions
  • Are you not able to open the client? Try following our getting started guide
  • Still not working? Try downloading and running JarFix
  • Help! My bot doesn't do anything! Enable fresh start in client settings and restart the client
  • How to purchase with PayPal/OSRS/Crypto gold? You can purchase vouchers from other users
  • need help making a bot that loots the spooky caludron in varrock and banks an inventory of items


    loltage

    Recommended Posts

     import org.dreambot.*
    
    @ScriptManifest (name="Spooky Cauldron Looter")
    
    boolean atBank()
    
    boolean atCauldron()
    
    public int onLoop(){
    
    	GameObject cauldron = GameObjects.closest("Spooky cauldron")
    
    	if(Inventory.isFull(){
    
    		if(atBank(){
    
    			if(Bank.isOpen(){
    
    				Bank.depositAll();
    
    			}else{
    
    				Bank.open()
    
    			}
    
    		}
    
    	}
    }

    That should define the Spooky cauldron, for you to interact with it. Then setup the logic for banking/ looting. It will bank when full on items.

     

    Edited by DefCon
    Link to comment
    Share on other sites

    9 hours ago, DefCon said:
    	if(Inventory.isFull(){
    
    		if(atBank(){
    
    			if(Bank.isOpen(){
    
    				Bank.depositAll();
    
    			}else{
    
    				Bank.open()
    
    			}
    
    		}
    
    	}

    could just be

    if (Inventory.isFull()) {
        if (Bank.open()) { // bank.open walks to and opens the bank, then returns true once its open
        	Bank.depositAll();
        }
        return 444; 
    }
    // the bank will need to be closed later, iirc walking will automatically close it but i dont think interacting will
    if (Bank.isOpen()) {
      Bank.close();
      return 444;
    }
    // do whatever else

     

    Link to comment
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    ×
    ×
    • Create New...

    Important Information

    We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.