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
  • How to switch from killing to looting case


    kolmassammas

    Recommended Posts

    Hey. Can't get my mind over it. How to switch killing and looting cases logically with the getState().

    Right know its something like this.

    private State getState() {
        if (!Players.localPlayer().isInCombat() && rats.contains(Players.localPlayer())) {
            return State.LOOKINGFORMOB;
        } else if(Players.localPlayer().isInCombat() && rats.contains(Players.localPlayer())){
            return State.KILLING;
        } 
        return state;
    }

    But how would i switch it to looting. 

     

    Link to comment
    Share on other sites

    You can sleepUntil the mob is dead and then sleeUntil it spawns loot, and then handle looting.

    So,

    if(rat.interact("Attack)){

    MethodProvider.sleepUntil(() -> Client.getLocalPlayer().isInCombat(), Calculations.random(7000,12000));

    if(Client.getLocalPlayer().isInCombat()){

    MethodProvider.sleepUntil(() -> Client.getLocalPlayer().getInteractingCharacter().getHealthPercentage <= 0 || !Client.getLocalPlayer().isInCombat(), Calculations.random(30000,40000)

    }

    # Then handle looting

     

     

    Link to comment
    Share on other sites

    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.