Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!
  1. L

    Falador Yew Chopper [Deleted]

    This resource has been removed and is no longer available for download.
  2. L

    Al Kharid Gold Miner [Deleted]

    This resource has been removed and is no longer available for download.
  3. L

    Falador Yew Chopper [Deleted]

    luminlumin submitted a new resource: Falador Yew Chopper - Fally Yew Chopper Read more about this resource...
  4. L

    Al Kharid Gold Miner [Deleted]

    luminlumin submitted a new resource: Al Kharid Gold Miner - Gold Ore Miner Read more about this resource...
  5. L

    Question Script just idles after worldHop.

    So begin your mine loop with if (!inMineArea()) { goToMine(); } // continue mine loop GameObject rocks = ...
  6. L

    Question Script just idles after worldHop.

    So what's the problem?
  7. L

    Resolved Opening inventory

    Well for me, InterfaceWindows.getInventory().open() did the trick... but I don't want to be doingitwrong
  8. L

    Resolved Opening inventory

    So InterfaceWindows?
  9. L

    Resolved Opening inventory

    Is there a method to open the inventory because I am trying to open the inventory when something returns true but i can't find the proper way to do it, and I don't want to do it through keys or mouse unless that's the only way to do it..
  10. L

    Question Script just idles after worldHop.

    Also, not to nitpick but you can use a filter for your worlds. This is how I hop worlds. WorldHop.hopToRandom(w -> !w.isPVP() && !w.isBounty() && !w.isDeadman() && !w.isHighRisk() && !w.isTournament() && !blackList.contains(w.getId())); blackList is just an ArrayList of...
  11. L

    Resolved Spam clicking the mine action

    Yes I know there should be two colors. The empty color being (48, 48, 48) and the other color being (106, 88, 30) according to Development Kit. The problem is is it's not clicking if I use colorSubstitution. Edit: So weird, it suddenly worked.. when an hour ago it didn't, which is why I used...
  12. L

    Resolved Spam clicking the mine action

    Hey, thanks for your reply. I did try to use colorSubstitutions, like so: GameObject gold = GameObjects.newQuery().within(GOLD_AREA).colorSubstitutions(empty, goldColor).results().nearest(); with gold area being defined as the area, empty being the rgb of a depleted ore, and goldColor being the...
  13. L

    Resolved Spam clicking the mine action

    GameObject rocks = GameObjects.newQuery().filter((go) -> go.getId() == 7491 || go.getId() == 7458 && go.distanceTo(Players.getLocal()) < 3).results().nearest(); if (rocks != null && rocks.isValid() && rocks.isVisible() &&...
Top