Search the Community
Showing results for tags 'captcha'.
-
Chase's Account Creator Proxy Support [ HTTPS, SOCKS ] Anti-Captcha & 2Captcha Support Display Name, Email, Password, Age Options Download LINK
- 26 replies
-
- 4
-
- account creator
- account
- (and 4 more)
-
Wondering what a fair price would be for those? Example: $20 Balance on Death By Captcha account, price to sell it for?
-
- deathbycaptcha
- recaptcha
-
(and 3 more)
Tagged with:
-
An open source Oldschool Runescape account creator with proxy and anticaptcha support! below is a snippet of how to use it. The only requirement is to specify your api key from anti-captcha.com public static final String API_KEY = "INSERT_API_KEY_HERE"; public static final String WEBSITE_URL = "https://secure.runescape.com/m=account-creation/g=oldscape/create_account?trialactive=true"; public static final String WEBSITE_KEY = "6LccFA0TAAAAAHEwUJx_c1TfTBWMTAOIphwTtd1b"; public static void main(String[] args) throws InterruptedException, MalformedURLException { Scanner in = new Scanner(System.in); AccountCreator creator = new AccountCreator(); System.out.print("IP : "); String ip = in.next(); System.out.print("PORT : "); int port = in.nextInt(); System.out.print("DISPLAY NAME : "); String displayName = in.next(); System.out.print("EMAIL : "); String email = in.next(); System.out.print("PASSWORD : "); String password = in.next(); System.out.print("AGE : "); int age = in.nextInt(); in.close(); creator.getBalance(); creator.createAccount(ip, port, displayName, email, password, age); }