Jump to content

jca

Members
  • Posts

    390
  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    100%

jca last won the day on November 30 2018

jca had the most liked content!

Profile Information

  • Gender
    Male
  • Location:
    England
  • Interests
    Goldfarming

Recent Profile Visitors

2150 profile views

jca's Achievements

Black Poster

Black Poster (5/10)

61

Reputation

  1. jca

    Muling

    Why ask the question then?
  2. jca

    Muling

    Never use the same IP with your mules.
  3. FYI it was breaking because you're calling getInventory() before the inventory is available. Most API functions should be saved for your onLoop() as they require the game to be loaded / an account logged in to work correctly.
  4. Thanks! Maybe, maybe not. It probably helps. Botting times were random, sometimes 8-12 hours, sometimes less than 5. But I was doing other skills in between, mainly farming runs. I’ve also achieved 99 woodcutting and cooking with similar script.
  5. Look at using the stored rocks position and writing a condition that finds the same rock on that position and checks if it doesn’t have ore, rather than checking the referenced rock. private boolean checkRockHasOreAtPosition(Position p){ RS2Object rock = getObjects().getAll() .stream() .filter(obj -> obj.getPosition().equals(p) && Rock.CLAY.hasOre(obj)) .findFirst() .orElse(null); return rock != null; } Something like that
  6. If they are asynchronous just execute them in your onStart or a function that is guaranteed to run once and you’ll also be fine.
  7. Is the NPC mage already set by the time you reach the condition? In the Boolean function call NPC mage = getNpcs().closest(“mage”); before returning. That may help...
  8. jca

    Maxing

    Well good luck on maxing!
  9. inventory#contains will check if any item in the provided array is in the inventory. There's probably a better way, but I use a separate function private boolean inventoryContainsAllItems(String... items){ for( String item : items ){ if ( !getInventory().contains(item) ) return false; } return true; }
  10. Ah I’m not really, I just wondered if there was a way. Again, theoretically dealing with a large area feels like it should be handled by region checking. But I can stick with areas, thanks for your thoughts and @Eliot
  11. That’s still defining an area... it’s not an issue. Just if there was an option with regions it feels better to use. But maybe it’s not possible.
  12. Yeah... well that’s one option. The area I need to check is huge (the size of the region, basically 104x104). My logic is if it’s already defined as a region and I could check that then it makes more sense then defining a massive area. But if there’s not really a better way then areas will have to do.
  13. Identify the region my player is in so I can then perform logic, for example @Eliot if ( isInRegion(region) ){ doA(); } else { doB(); }
×
×
  • Create New...