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

    Posted

    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?

    • 4 weeks later...
    Posted

    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.

    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.