Everything posted by Gunman
- Weekend Farm
- Targetting the NPC that is attacking me
-
Help to implement tick manipulation
onGameTick isn't supported in Mirror Mode. I think MGI said he won't be adding support either because of detection or something, I don't really know why. https://osbot.org/api/org/osbot/rs07/event/interaction/MouseMoveProfile.html getBot().getMouseMoveProfile().setSpeedBaseTime(0); // What controls how fast the mouse is. Lower is faster getBot().getMouseMoveProfile().getSpeedBaseTime(); //Get also get the value so you can see the base settings. getBot().setMouseMoveProfile(new MouseMoveProfile() .setNoise(0) .setDeviation(0) .setOvershoots(0) .setSpeedBaseTime(0) .setFlowSpeedModifier(0) .setMinOvershootDistance(0) .setFlowVariety(MouseMoveProfile.FlowVariety.MEDIUM) .setOvershoots(0) ); New mouse has to be enabled to use this ^
-
Drop jugs after drinking wines
Always try to keep it 1 interaction per cycle of the onLoop. So to do that here you can do as the guy said above by reversing the order. if (getInventory().contains("Jug")) { log("Dropping"); if (getInventory().dropAll("Jug")) { ConditionalSleep2.sleep(1200, ()-> !getInventory().contains("Jug")); } } else if (getInventory().contains("Jug of wine") && myPlayer().getHealthPercent() <= 60) { log("Drinking"); if (getInventory().interact("Drink", "Jug of wine")) { //Depends on your needs but you can sleep or not here ConditionalSleep2.sleep(1200, ()-> myPlayer().getHealthPercent() > 60); } } But if you want it purely done after drinking then you will have to do it Heiz way or put the check and dropping of "Jug" at the top of your onLoop. P.S. Reason it ignores the Jug btw is because every game tick is ~600ms, so when you drank the wine you were also checking for Jug on the same game tick. It would take a game tick for the game to make the wine go from Jug of wine to Jug.
-
Help to implement tick manipulation
Don't forget to take in account for mouse speed
-
Khal Tutorial Island
No, it does not. No script on the SDN does this.
-
runelight compatability
The only client that's recommend to hook with mirror is Jagex's client. Only other client that officially gained any support was Rune lite, but isn't recommended. Only added because of over whelming demand
-
runelight compatability
Either it works or it doesn't. Rune lite support is extremely buggy. Doesn't work for most people from what I have heard and seen around the forums.
-
Deleted
@Dogcube Hid your reposts. Methods like this private boolean needToHeal(){ int healPercent = 45; if(healPercent > getHpPercent()){ return true; }else{ return false; } } Can be simplified to this private boolean needToHeal() { int healPercent = 45; return healPercent > getHpPercent(); } And make sure you use braces ( these -> {} ) on your if statements. Scripting tutorial linked below. https://osbot.org/forum/topic/115124-explvs-scripting-101/
-
creating new accounts
Make an account creator scrub
-
Buying $12.75 voucher for 31M OSRS
@GameDance Can you please confirm if this transaction was complete or not?
-
I can't open osbot
Try running jar fix. https://johann.loefflmann.net/en/software/jarfix/index.html
- Full Screen
-
AIO MTA
Some of the settings widget ids changed last update, might be why it's stuck. I don't know what it might be trying to turn on or off or change Might help Eagle if you provide if this is on Mirror or injection and if it only happens on Mirror if it is. @Eagle Scripts ^
-
Not sure on how to download the client?
If you don't have java 8 installed, go to java.com and install java 8. Then open it as a jar file. May need to click look for another app on this pc and navigate to the folder.
-
Best proxy website to use for botting?
@Steven Jay Me boi @Elliott sells US proxies for RS. He's gone on vacation atm so he won't be selling for like another week. (They're like $4 each but are high quality is why. Not really needed for 1 account btw since you need to buy a min of 3.) Also for the first couple bans you generally can quash them for hijacking if you use a proxy on them.
-
Selling Level 3 HCIM | 99FM | 700+ crates banked!
@Mikasa Use the bump button smh
-
account selling
Not allowed to sell accounts with TWC.
-
Imposter Scam - Frotomaniac
@Malcolm User has been banned. @Fratem If that is you in the screenshots above, check them UIDs please. Dispute closed.
-
Osbot Client Glitching
@GuguBhai Account name is in the picture. And it's something with hardware acceleration I think? Don't remember. @Patrick Any update on this? Look at picture hidden below.
-
PS1 Games
Sorry boomers but I am a PS2 and N64 kid smh.
-
mmmmmmmmmmmmhm oh yeah bring it around
Why'd you leak the mod test
-
i keep getting billed for that slayer bot 9.99 usd a month and can't unsubscribe please help Malcolm & Juggles slayer bot.
Cancel the subscription through PayPal. Tutorial below, and OSBot should be listed as Meire & Brito Automation. https://www.youtube.com/watch?v=PqjBueILt60
-
How to check if player in certain area?
@SmaTTeR Read #6 here https://osbot.org/forum/topic/115124-explvs-scripting-101/
-
How to check if player in certain area?
You need to define the area. And make sure it's the OSBot Area import and not the Java Area import.