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

    Posted

    title sais it really i would pay a lil if u can do it quick <3 :)

    Posted
     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.

     

    Posted
    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

     

    Archived

    This topic is now archived and is closed to further replies.

    ×
    ×
    • 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.