Everything posted by Gunman
-
Ending a subscription?
https://www.youtube.com/watch?v=PqjBueILt60
-
HALP
@bigNsmall If you don't need Java 11 uninstall it. Can also try running jarfix to see if it can switch default java to 8 if it's installed. https://johann.loefflmann.net/en/software/jarfix/index.html
-
Whats the best motherload mine script?
Did none of you read what he said lol He already owns both
-
Whats the best motherload mine script?
@zfragale Wrong section. Moved to a more appropriate section. That section is only for scripters to make there script thread for official SDN scripts.
-
SOLVED Auto Login Delay help
If it's not encrypted they can just reverse it and look at the source code.
-
Trouble with accounts getting locked. Any tips/advice?
With the new changes mentioned above with incapsula, you can't use Firefox to make accounts anymore as it seems it's forever stuck with the error 15 message no matter what you do.
- Hello
-
two of my OSBOT accounts banned
@sirhcharty1 TAG all your accounts
-
two of my OSBOT accounts banned
@sirhcharty1 Tag the accounts
-
Mouse Accuracy Data Collector
Took a look and it appears clean. Reversed code -> https://pastebin.com/RaQd3VT5
-
[Dev Build] OSBot 2.6.15
What kind of Jam flex spaghetti code is that? He can still have a duct tape monkey fix for that. Won't be pretty but... It will work better than 20% of the time lol
-
[Dev Build] OSBot 2.6.15
Why not make a break condition to detect femi dialogue and make a dialogue handler for a temp fix?
-
New Mouse and Hardware Mouse Documentation
I mean... This is about all you get https://osbot.org/api/org/osbot/rs07/event/interaction/MouseMoveProfile.html It's a lot better than the old mouse in terms of looking humanlike but it doesn't use human data in the way I think you're asking(Like AI Deep Learning).
-
Removal of script from my acc
Probably be up to @Patrick to add a visibility toggle or something in the client. Or like favorites probably would be better.
-
Removal of script from my acc
Just always have perfect typed in the search bar
-
Is there a discord?
Top of the page, button called discord
-
[Dev Build] OSBot 2.6.15
That sounds like a similar issue I had right after the settings menu changed(Not with the API for settings. I don't use that API). Fixed this by checking if the widget was visible other wise scroll down until it is visible.
-
We should weaponise our autism against this guy..
@DROID Why would we launch some kind of cyber attack against him? No reason for it whether he's relevant or not lol
-
Looking for a good fighter scrupt
Moved to an appropriate section. That other section was only for Official OSBot script threads.
- Accounts locked for using VPN, don't want to connect email address to it to recover? (Help a noob <3)
-
Customer left negative feedback says we didn't refund...
@sticky jack Have you been refunded?
-
he submitted bad feedback 3 months ago for requiring id
@CrazyPipe I didn't see a negative feed back from 3 months ago. Only negative feed back I saw was from November 2019 and has been deleted.
-
OSRS account seller that used abv.bg
@talipenIf an email isn't registered you should be able to unlock them fairly easily.
-
[Dev Build] OSBot 2.6.14
If you're using private scripts why not tweak the mouse to be faster lol Think there's another setting that controls this but here's the code for it getBot().setMouseMoveProfile(new MouseMoveProfile() .setNoise(0) //default 2.15 .setDeviation(0) //default 7 .setOvershoots(0) //default 2 .setSpeedBaseTime(0) //default 185 .setFlowSpeedModifier(0) //default 1.0 .setMinOvershootDistance(0) //default 25 .setFlowVariety(MouseMoveProfile.FlowVariety.HIGH) //default MouseMoveProfile.FlowVariety.NORMAL .setMinOvershootTime(0) //default 375 ); For most of them lowering the number turns the setting up. So like for speed base time if you set it to 0 the mouse will instantly teleport, set it to 800 and it will move at 10 pixels a second basically lol.
-
Help with camera rotater
@TNBJeff Done. import org.osbot.rs07.script.Script; import org.osbot.rs07.script.ScriptManifest; @ScriptManifest(author = "Gunman", info = "", name = "Camera Rotate Thing", version = 1.0, logo = "") public class Main extends Script { @Override public int onLoop() { getCamera().moveYaw(random(0, 360)); return random(60_000, 240_000); } }