-
MouseKeys like mouse movement?
Yes, you can do this by sending mouse events manually. For example, if you want the bot to instantly move the mouse down by 40 pixels, you can achieve this by using the following: bot.getMouseEventHandler().generateBotMouseEvent(MouseEvent.MOUSE_MOVED, System.currentTimeMillis(), 0, mouse.getPosition().getX(), mouse.getPosition().getY() - 40, 0, false, 0, true);
-
*All should read* Awesome new update *Runescape*
Yeah, it's for rs3 only. Limit is still 6h on 07.
-
MirrorClient v1.03
Yes link is working now, thanks .
-
Running OSBot with 32bit Java Issue with command prompt.
You should use org.osbot.Boot as your main class, or simply run "C:\Program Files (x86)\Java\jre1.8.0_40\bin\java.exe" -jar "C:\path_to_your_osbot.jar" I imagine you need multiple arguments for the proxy etc if you want to run org.osbot.BotApplication directly and skip the boot GUI (if possible).
-
OSBot 2.3.38 - Mirror Client BETA + more
Why is there a post count requirement to read the mirroring guide? I'm sponsor but I can't read it. I really want to test it :P
-
Need agility & thieving powerleveling done
Hey, I got 3 accounts which all need the following skills done by hand: - 10 -> 50 thieving - 51 agility (starting at level 30-40, different for each account) I will supply basic things like teleports and food. Bots may absolutely NOT be used. If you get an account banned anyway you'll be forced to make a new one with the same stats / quests done. We'll discuss this in Skype to protect both parties. Looking for trusted people. Can pay a good price (as long as it's done legit ), and I'm not in a hurry (as long as it's done at Friday it would be great). One account per worker is preferred.
-
Disable autologin
You can do the following: bot.getRandomExecutor().registerHook( new RandomBehaviourHook(RandomEvent.AUTO_LOGIN) { @Override public boolean shouldActivate() { return false; } } ); And if you want to allow the autologin to activate again, use the same code again but change the return false; to return super.shouldActivate().
-
OSBot 2.3.17 - Various Patches
Awesome, thanks for the update
-
Bot FULLY Operational Again!
Thanks, it's working great at the moment .
- ★ Lucy's AIO Service ★ Verified Services! ★ 「205+ Feedback」Fast √ Safe √ Reliable √ Professional √ All the needs you need, will get done!
-
Need some skills done legit
samosamo is doing the service at the moment!
-
SAMOSAMO15's AIO「$100 DONATOR」CHEAPEST SERVICE THERE IS ASK FOR PRICES ON SKYPE!SPECIAL OFFERS! PRO QUESTER! 20% OFF FOR ONE MONTH ONLY!
What service do you require? 10 -> 60 ranged, 10 -> 50 thieving, 33 -> 53 agility, 1 -> 60 prayer Have you added my Skype? Yes, we have already made a deal Do you accept my terms of service? Yes
-
Need some skills done legit
I'm looking for someone who can train the following skills legit: 10 -> 60 ranged 10 -> 50 thieving 33 -> 53 agility 1 -> 60 prayer Of course I will supply arrows, food, and dbones for this. I'm willing to pay well (07gp or paypal), but ABSOLUTELY NO BOTS MAY BE USED. If you manage to get the account banned you will be required to refund an account with the same stats/quests done. If you are trusted and willing to do this, please post your price here .
-
Script hangs on Inventory interaction when in trade
I often got the same error when hopping worlds. It seems like the event executor can get bugged after a while, causing the script to freeze. What I did is "renewing" the event executor every time before hopping (or in your case, before interacting with an inventory item) like this try { Field field = Bot.class.getDeclaredField("eventExecutor"); field.setAccessible(true); field.set(bot, new EventExecutor(bot)); } catch (Exception e) { } This completely prevented the error from occuring again for me. I imagine it would fix your problem too.
-
Need help: Questions number 10 and 11 from College Algebra CLEP Study Guide
The answer is actually A, not B. After bouncing i times, the ball reaches a *height* of h(2/3)^i. However, it travels 2h(2/3)^i (twice the height) before reaching the ground again, since the ball travels up and down.