Zummy
-
Joined
-
Last visited
Posts posted by Zummy
-
-
Thanks for all the replies guys! If I understand this correctly, as long as the sitekey is present in the page source, recaptcha is loaded?
9 hours ago, Impensus said:Also just a side note, I’d recommend ditching selenium and running the script over post/get requests instead as it will be far more lightweight.
I did that in the beginning until they changed to invisible captcha's. I don't know much about HTTP requests and calling functions while doing so (onSubmit()), so I changed it all to Selenium.
-
-
1 minute ago, Naked said:
anticaptcha
Did you verify the captcha is loading?
I'm also using anticaptcha, what's your fail-rate?
No I don't verify if it has been loaded, can I check for certain HTML elements to verify if it's loaded?
I don't think it's proxy related, sometimes it does and sometimes it doesn't complete the captcha with the same proxy.
-
8 minutes ago, Naked said:
1) Make sure your proxies aren't blocking the recaptcha from loading (Inspect and look at errors)
2) Use this to inject the captcha response:
3) make sure you're submitting the form and not clicking it
Thanks for the reply!
I'm using the same technique:
RemoteWebDriver r = (RemoteWebDriver) driver; String setResponseToken = "document.getElementById('g-recaptcha-response').innerHTML='" + CAPTCHA + "'"; r.executeScript(setResponseToken); r.executeScript("onSubmit()");
What anti captcha service do you use?
-
-
-
-
-
Hey guys I was wondering if it is possible to run a script from it's class file instead of having to compile to jar.
At the moment I can't replace a jar when an instance of osbot is running, I think this is because all my scripts have the same class dependencies (my own api).
It's also causing these errors:

-
-
-
-
-
Edited by Zummy
Hey guys, I bought a server to run some client but I'm having issue's with ram usage. The scripts use over 3GB each, while the same script on my laptop runs on ~700mb.
I tried turning off the sounds but that didn't work. I'm running on Windows 2016 Standard with 2x 2.1Ghz CPU and more than enough DDR4 RAM. Any suggestions are appreciated!
Oh and I'd rather not limit the heap since that could cause the client to freeze.
-
40 minutes ago, Explv said:
Now when you go to create an artifact, you will see each module in the available elements section. Just select which one you want for this .jar
Thanks! Absolute legend! Just one more question ? I have a package containing my custom api, how can I set it up so all modules use that same package?
-
-
-
-
2 hours ago, BottedUnited89 said:
Open osrs client, sign into your account. Turn it to fixed mode, log out of your account and then EXIT the osrs client, now restart osrs client and osbot should work. (You must also restart OSBot once you have switched osrs to fixed mode.)
I know, that's exactly what I have been doing. But sometimes the change in settings doesn't get remembered or something.
-
Hey guys, I've been having problems since they forced new accounts into resizable mode. Even after changing to fixed mode and restarting the client, it sometimes still is in resizable mode.
I don't know if this is an issue of settings not being cached correctly or if it has something to do with the osbot client, but I would appreciate it if someone could shine some light on the subject.
Thanks!
-
-
-
-

Creating socks proxies from subnet
in General Help
·
Edited by Zummy
Hey guys I have a dedicated server (Windows 2016 OS) with an IP range of /29. Is it possible to create a socks subnet for connecting to osbot clients? I would like all clients running on that dedicated server to connect to that subnet. If so where do I start? Thanks.