Jump to content

bobbybill123

Members
  • Posts

    10
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

bobbybill123's Achievements

Newbie

Newbie (1/10)

1

Reputation

  1. Solved this. It looks like "Examine" is not an action found in RS2Objects.
  2. I have tried List<RS2Object> nearbyObjects = mp.getObjects().getAll().stream().filter(o -> o.hasAction("Examine")).collect(Collectors.toList()); but this too returns an empty list.
  3. Oddly enough, even the simple call getObjects().closest(a -> a.hasAction("Examine")); returns null despite being surrounded by trees with examine text.
  4. Thanks! I see you've called .closest() which only returns a single RS2Object. I was hoping to obtain a List of them all. Do you know if such a thing is possible?
  5. I'm having trouble obtaining RS2Objects around my character which contain the Examine action. I use the following line to try to do so, yet its size is always 0. I am trying to examine things like trees and whatnot. List<RS2Object> objectsNearby = mp.getObjects().filter(o -> o.hasAction("Examine"));
  6. Are there methods which can be used to replace the need for setting properties via CLI arguments? For example, setting the client login details, proxy, world type to log into, etc.
  7. I appreciate your response. Has it been decided if that functionality will be brought to the CLI at some point?
  8. Hello, I'm a bit confused on how large bot farms are supposed to handle launching clients now that new accounts are bound to logging in through the Jagex launcher. Are we supposed to devise our own program which automates interacting with their launcher to get OSBot open, fetching the right email verification code, then automate a way to start the correct OSBot script? It looks like launching clients en masse with their corresponding login info and script through the CLI / Java / a bot manager is completely out the window. Are there tools readily available that make these things a non issue? Or is everybody just silently beginning to code these things up?
×
×
  • Create New...