Jump to content

True Scripts

Lifetime Sponsor
  • Posts

    91
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by True Scripts

  1. Here is the list of worlds that I used

    public final int[] WORLDS = {
    			301, 302, 303, 304, 305, 306, 309, 310, 311, 312,
    			313, 314, 317, 318, 319, 320, 321, 322, 325, 326,
    			327, 328, 329, 330, 333, 334, 335, 336, 337, 338,
    			341, 342, 343, 344, 345, 346, 349, 350, 351, 352,
    			353, 354, 357, 358, 359, 360, 361, 362, 365, 366,
    			367, 368, 369, 370, 373, 374, 375, 376, 377, 378
    	};
    

    Although i can just remove the ones that are commonly full, there should be a Boolean value returned by the world hopper for me to determine what to do if it can not reach the world.

  2. if(B + WB > 14){

    if(B >= (B+WB-14)){

    if(openBank()){

    Main.main.client.getBank().deposit(Storage.BUCKET[0], B+WB-14);

    Main.main.sleep(200);

    }

    }else if (WB >= (B+WB-14)){

    if(openBank()){

    Main.main.client.getBank().deposit(Storage.WATER_BUCKET[0], B+WB-14);

    Main.main.sleep(200);

    }

    }else{

    if(openBank()){

    Main.main.client.getBank().deposit(Storage.BUCKET[0], B);

    Main.main.client.getBank().deposit(Storage.WATER_BUCKET[0], WB-14);

    Main.main.sleep(200);

    }

    }

    }

  3. check for the interface i've never used a deposit box but i would think there would be an interface

     

    I was going through the interfaces, i was able to get a box around 6 items at a time and this doesn't support the ability to tell what the item is. Thanks for the suggestion though

  4. Currently there is no easy way of using the Deposit Box.

    The only way as far as I'm aware is Color Picking. 

     

    What features would it have?

     

    Ability to detect what items are in the window.

    Ability to deposit by id.

    Ability to get id for slot.

     

    Thanks,

    miles7191

     

×
×
  • Create New...