Everything posted by Gunman
-
Why my post is still not approved?
Posted in the wrong section is why
-
[Stable] OSBot 2.7.0 - BOT MANAGER RELEASE
You need a normal membership too to have more than 1 client open at a time
-
14 day membership codes | Automated | $2.2 to 2 each
Closed because of update where Jagex removed the ability to redeem bonds as codes https://secure.runescape.com/m=news/a-notice-to-players-about-membership-passcodes?oldschool=1
- 3 replies
-
- code
- membership
- bond
- osrs
-
Tagged with:
-
not working
Ask the on the script's thread, or say which script at least and maybe someone can help
-
Discord Verification Thread
I can't find you in the discord. Join or leave and rejoin
-
Buying membership with GP.
You can sell member items in F2P world btw
-
How do I do mirror mode on jagex launcher acc
Use mirror as normal, you just launch the legacy java client through Jagex's launcher
- -
-
Is it totally unsafe to launch the client in stealth mode?
I didn't get hit with this on any of my test accounts
-
Discord Verification Thread
Need to post your discord UID too
-
Looking to buy Fresh TUT island done accounts
What is a non true lvl 3?
-
Can't run OSbot on Mac
Uninstall Java 22. Or use a terminal to specify and open OSBot with
-
[Stable] OSBot 2.7.37
Code for using invokes with this added to my repo https://github.com/MrGunman200/OSBot-Extended/tree/master/extra/src/api/invoking
- huzaifa tanveer
-
Discord Verification Thread
You're not in the server
-
Failed to login. Please try again.
Sounds like a bad proxy maybe?
- How can I improve?
-
How can I improve?
@pupu_pot API already has a empty slots method getInventory().getEmptySlots(); Use ConditionalSleep2 at least over ConditionalSleep if not a custom sleep class. Empty wall part doesn't actually work I'm pretty sure // Wait until the amethyst turns into "Empty wall" new ConditionalSleep(240000, 2000) { // 240,000 milliseconds (4 minutes) @Override public boolean condition() throws InterruptedException { return !amethyst.exists() || amethyst.getName().equals("Empty wall"); } }.sleep(); Furthermore I recommend not using any AI assistance if you're trying to truly learn coding. If you're just slapping scripts together go for it.
-
Discord Verification Thread
I still can't find you, can you try leaving and rejoining?
-
Bank pin solver not working
@driedApricots RandomSolvers will interrupt the script loop, not sure why that would kill the script though. Put the code in a try catch and see if that does anything, may be related to a exception being thrown
-
invokes
They do, they actually recently added back the method in their API publicly https://github.com/runelite/runelite/commit/92e85beb53a0605a82f9a6ce36e1c2769cd238b3
-
invokes
Sales pitch I suppose You generally use it like normal scripting code, not sure what examples you wanted. Here's an example of "infinite" prayer flicking I suppose @Override public void onGameTick() { super.onGameTick(); final PrayerButton prayer = PrayerButton.THICK_SKIN; final RS2Widget widget = getPrayerWidget(prayer); final InvokeHelper ih = new InvokeHelper(this); if (widget == null) { return; } if (getPrayer().isActivated(prayer)) { ih.invoke(widget, 0); ih.invoke(widget, 0); } else { ih.invoke(widget, 0); } } private RS2Widget getPrayerWidget(PrayerButton prayer) { RS2Widget widget = getWidgets().getAll().stream() .filter(w -> w.getSpriteIndex1() == prayer.getSpriteId()) .findFirst() .orElse(null); if (widget != null) { widget = getWidgets().get(widget.getRootId(), widget.getSecondLevelId()); } return widget; }
- [Stable] OSBot 2.7.35
- [Stable] OSBot 2.7.35
-
Perfect Agility AIO
Doesn't seem to matter, and if he's using my invoke helper with clicks then it sends a right click to 0, 0 with every action invoked