Everything posted by Gunman
-
Failed to load local Script
Drop the jar here if what Khal says doesn't fix it
-
OSBot not showing scripts
OSBot is probably having issues loading the scripts through the proxy
-
How to find object/graphic on a tile.
Didn't look hard, and filters List<RS2Object> objects = getObjects().get(x, y); Position[] targetPositions = {new Position(0, 0, 0)}; List<RS2Object> objects = getObjects().getAll().stream() .filter(p -> Arrays.asList(targetPositions).contains(p.getPosition())) .collect(Collectors.toList()); EDIT: In case you also don't know how to loop through them to print out the ids... objects.forEach(object -> log(object.getId()));
- Ardougne Agility Course
-
Handling misclicks.
1 interaction per cycle of the loop, or you only add a isBankOpen check, if you're too lazy to actually plan out/redo a stable script
-
Calling methods from another class
Welcome to OOP, it's shit
-
Calling methods from another class
@Kayle7 Do what Khaleesi said or pass the instance to the class you want to call it from
-
Changing world after logging out possible?
Try this getClient().accessor.setCurrentWorld(worldNumber);
-
Draynor Village Fisher/Banker [Open Source]
Made some changes
-
Using OSBot with a jagex account. accidentally updated
Might be SOL atm actually, even compiling OSBot into an exe and replacing the old launcher with it doesn't work as OSBot has some hook errors thrown
-
Cant click on widget ..
-1 should mean it's not a grand child so no. I don't get how it would run if the widget is null, you can't call a method on something that doesn't exist. My guess is the null was from the .isVisible check if you interacted with the widget.
-
Using OSBot with a jagex account. accidentally updated
- Cant click on widget ..
@saintpaul1 Run this and see what gets logged final RS2Widget widget = getWidgets().getAll().stream() .filter(w -> w.hasAction("Deposit loot")) .findFirst() .orElse(null); if (widget != null) { log("RootId: " + widget.getRootId()); log("ChildId: " + widget.getSecondLevelId()); log("GrandChildId: " + widget.getThirdLevelId()); } else { log("Widget couldn't be found!"); }- Using OSBot with a jagex account. accidentally updated
Find where the launcher opens RuneLite, replace the RuneLite jar with OSBot and rename OSBot to RuneLite. Launching through launcher with RuneLite option should open OSBot if my theory is correct, not 100% sure if the login handler supports the different login screen or not.- any chance of osbot being updated to Java 11?
Stealth supports up to Java 17, Mirror is Java 8 only- OSbot will not initialize. **Error**
@davidjarrett2014 Still happening or fixed?- [Stable] OSBot 2.6.67
Prime event started the same day- [Stable] OSBot 2.6.67
Some scripts do/did that, and no, they currently don't look at that- Help
Stealth got updated, people had better experience using it, more people saw people saying stealth good, more people started trying it out- Questions about custom script, custom client, and getting bans
The purple hurts to read, that I know for sure. Ban is probably related to the way the client is interacting with the game or way it's modifying the game- not able to interact with objects
No u- New Mouse vs Old Mouse(not choosing new mouse) vs Hardware Mouse
Correct- Issues with creating accounts on a proxy
@Mancubus Click it manually, if it works, then it's something you're doing when handling the turnstile. If it still doesn't work even after a couple tries then the chrome instance it self is throwing detection flags- Trying to use multiple classes
Need to exchange context with testTwo as well- link to api docs?
- Cant click on widget ..