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
  • Getting items only from the NPC the player has just killed?


    Celentano

    Recommended Posts

    Hello,

    I am making my first script starting today & so far everything is pretty self explanatory. But I've run into a problem.

    I have a fighting task:

    NPC cow = NPCs.closest(2790, 2791, 2792, 2793, 2794);
    if (cow != null && !cow.isInCombat()) {
        if (!getLocalPlayer().isInCombat()) {
            cow.interact("Attack");
        } else {
            sleepUntil(() -> !getLocalPlayer().isInCombat(), Calculations.random(300, 3000));
        }
    }

     

    My looting task looks like this:

    GroundItem item = GroundItems.closest(2132);
    if (item != null) {
        // don't look like a bot
        Camera.rotateToEntity(item);
        item.interact("Take");
    }

    The script loots anything that matches, of course; but how can I specify to look for the one the player has recently killed or interacted with?

    Link to comment
    Share on other sites

    • 4 weeks later...

    You could after the attack command use sleepuntill hpbar is visible then get the cow location and store it in a variable and then check if there is loot at said location once you are out of combat.

    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.