Jump to content

Chase

Members
  • Posts

    127
  • Joined

  • Last visited

  • Feedback

    100%

Everything posted by Chase

  1. For further discussion check out this thread!
  2. Chase's Account Creator Proxy Support [ HTTPS, SOCKS ] Anti-Captcha & 2Captcha Support Display Name, Email, Password, Age Options Download LINK
  3. Unfortunately, I've decided against releasing the automated mode to the public. I believe it will damage the game's integrity and make it too easy for people to abuse account creation. If you would be interested in purchasing the application from me, contact me through pm. I am willing to add any features you would like as well, assuming the payment is reasonable.
  4. An update for the account creator, made an automated mode. In the video you can see what the loaded account list looks like : EMAIL ; DISPLAYNAME ; PASSWORD ; AGE In addition, there is also proxy support where your account information would instead be PROXY IP ; PROXY PORT ; EMAIL ; DISPLAYNAME ; PASSWORD ; AGE Other features : Recognizes failed and successful account creation Input, and Output file support Both Anti-Captcha and 2Captcha support
  5. Nah you're not paying me, in order for the account creator to solve the captchas we use a service like anti-captcha.com or 2captcha.com These sites charge between 1$-3$ for a thousand captcha solutions. Simply sign up and deposit a dollar or so on anti-captcha.com. Then, you can find your api key under settings in their site's dashboard. As of now the application only supports anti-captcha.com but 2captcha.com will be added in the near future.
  6. maybe like 2-3 hours so like "email+name@google.com" doesn't work?
  7. Looking for work! Down to make private scripts, or some public ones if you have good ideas

  8. Video Demonstration Jar File download the jar and run it just like osbot.jar ! Proxy and CLI support on the way!
  9. Is it just me or does CLI not work? Seems like it always says incorrect number of arguments
  10. I'm gonna compile this into a jar and demonstrate the usage later today. It was intended to be source code so other scripters could use, so I didn't spend anytime on user interface. Plan on tonight creating a graphical user interface with the option to specify proxy/no proxy and CLI compatibility so it can create an account and instantly start osbot. Down the line, I'm trying to figure out a way to register actual emails and verify the accounts. You can plan for a more user orientated application of this late tonight or tomorrow.
  11. Chase

    locked

    Verify your accounts' emails! This greatly improved my ban rates!
  12. Yep it works great, takes a little for the captcha response to come through! Sounds great! The ones that sell for 100m+ probably create real emails to verify though. I am working on finding a mail service where I can create emails without a mobile phone It creates old school runescape accounts! You provide the proxy ip , port, display name, email, password, and age
  13. This is my go to vps service!
  14. 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); }
×
×
  • Create New...