

Honeycomb
-
Posts
40 -
Joined
-
Last visited
-
Feedback
0%
Posts posted by Honeycomb
-
-
MacBook Pro with Java 7 Update 21 and OS X 10.7.5
http://osbot.org/forum/topic/3792-script-stopping-doesnt-work-with-multiple-tabs/#entry40898
http://osbot.org/forum/topic/3949-i-cant-start-scripts-anymore/?p=40910
-
http://osbot.org/forum/topic/3792-script-stopping-doesnt-work-with-multiple-tabs
[ERROR][]: Error on executing random worker! java.lang.NullPointerException at org.osbot.engine.Bot.K(el:310) at org.osbot.LPt1.shouldActivate(tn:25) at org.osbot.script.rs2.randoms.RandomManager.scan(fn:27) at org.osbot.G.run(kj:205) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:722)
Well, this goes away if I use 1.6.12, but script pausing and stopping is still broken in 1.6.12, 1.7.1 and 1.6.9... I'm guessing it worked in 1.6.5, as I remember it once working, but we're no longer allowed to connect with 1.6.5...
Well, it works in 1.7.1 if you use an added account... SCRIPT PAUSING AND STOPPING IS STILL BROKEN, THOUGH...
-
I'm on a MacBook Pro with Java 7 Update 21 and OS X 10.7.5; script pausing and stopping doesn't work if multiple tabs are open. No errors are thrown... It just doesn't work...
-
Please fix the tabs or allows us to launch multiple clients... Right clicking a tab, when multiple tabs are open, crashes the bot... Trying to close a tab, when multiple tabs are open, crashes the bot... Trying to stop or pause a script, when multiple taps are open, doesn't work (and screws up the bot). So, yeah... Unless you only start scripts, trying to run multiple accounts is too labor intensive because the entire client must be restarted each time a single tab runs into an issue.
-
What happened to 1.7.1?
-
Restarting my laptop fixed this...
-
Found an issue:
The bot doesn't bank. I tryed it on different scripts. It seems like an issue of the bot
My script can bank properly...
-
The login random is broken. It can't type...
-
Switch the sleep and stop methods. It might work.
Yeah, I just removed sleep... We'll see...
-
It should not autologin when you use the stop function to stop your script :0
Well, it does...
private void logout() throws InterruptedException { if (currentTab() != Tab.LOGOUT) { openTab(Tab.LOGOUT); this.IRT = random(1024, 2048); sleep(this.IRT); } selectInterfaceOption(182, 6, "Ok"); sleep(random(2048, 4096)); stop(); }
-
What's the method to disable OSBot's autologin random? I have a method that logs out and stops my script, but OSBot's autologin random logs my character back in...
-
Does it turn into an NPC? Or does it giveout an animation?
I believe it has an animation, and I've noticed that it has a verticeCount > 128 (due to the added animation), while regular rocks have a verticeCount < 128, so I tried
while (client.getMyPlayer().isAnimating()) { if (closestRock.getModel().getVerticeCount() > 128) { walkMiniMap(new Position(client.getMyPlayer().getPosition().getX() + random(-1, 1), client.getMyPlayer().getPosition().getY() + random(-1, 1), 0)); this.MRT = random(2048, 4096); sleep(this.MRT); } }
, but it isn't working...
your rock id changes, make a constant check on what your player is interacting with.
Can you point me to the method that allows me to get the object that my character is interacting with?
-
Fixed...
-
What's a good method for avoiding Exploding rocks?
-
When looting I use:
this.client.rotateCameraPitch(Int);
It makes the camera move upto the int, I believe the highest is between 62-69, can't remember fully.
NOTE: Not sure if this is what you meant, if so, you're welcome
Yeah, I used another method to find the values I wanted. I guess I wasn't using the correct values earlier. Great bot; I'll probably be purchasing VIP soon.
-
Are there any WORKING methods to adjust the camera? I want a top-down view, and a couple methods in the API seem to not do anything...
My GPU goes crazy until "[DEBUG][]: Switched canvas mode to MULTITHREADED." hits...
-
Should
for (NPC npc : client.getLocalNPCs()) { if ((npc != null) && npc.getName().equals("Evil chicken") && npc.getFacing().equals(client.getMyPlayer())) { // TODO flee } }
work?
-
I'm writing an autofighter and while testing it, my character just sat there fighting an Evil Chicken... Can I add something to my script that allows OSBot to handle it, or do I have to handle it myself?
Nevermind... It just solved Mysterious Old Man... I guess Evil Chicken is broken...
-
It takes multiple tries to connect to the "remote server." As a free user, If you close a single tab, then try to open a single tab, the bot tells you that you can't open anymore tabs.
-
Why does this bot use more GPU resources than a basic Runescape client? My GPU goes crazy whenever I start this bot... You'd think it's mining bitcoins or something...
Script pausing and stopping is broken
in Archive
Posted
Well, it doesn't work for me.
Alright, it was onExit()... Shitty fucking method broke my script!