-
Examine Random RS2Object
Solved this. It looks like "Examine" is not an action found in RS2Objects.
-
Examine Random RS2Object
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.
-
Examine Random RS2Object
Oddly enough, even the simple call getObjects().closest(a -> a.hasAction("Examine")); returns null despite being surrounded by trees with examine text.
-
Examine Random RS2Object
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?
-
-
Examine Random RS2Object
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"));
-
Allow the client to be patched via the CLI
Yes that's exactly right. I can run the Jagex launcher through the CLI but OSBot might not necessarily be bound to a configuration needed for that account.
-
Can one set the values of CLI flags via method calls
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.
-
Allow the client to be patched via the CLI
1. A description of the suggestion Allow the client to be patched via the CLI. Allow it to be done with custom CLI arguments. 2. How will this suggestion impact scripters and/or botters? New accounts are currently unable to launch OSBot through the CLI due to the newly imposed Jagex launcher login requirement. If a large scale botting ecosystem wants to provide its own solution to handling the Jagex launcher outside the OSBot Bot Manager, and desires to launch bots with individualized parameters, it can no longer do so by relying on the CLI. By allowing the client to be patched in the CLI, it provides a low resource, quick way for these ecosystems to specify the parameters they desire for each bot.
-
Automating the Launch of OSBot Clients at Large Scale with Jagex Launcher / Accounts
I appreciate your response. Has it been decided if that functionality will be brought to the CLI at some point?
-
Automating the Launch of OSBot Clients at Large Scale with Jagex Launcher / Accounts
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?