Socket
Socket
Sign inDemoInstall

rs-account-creator

Package Overview
Dependencies
82
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rs-account-creator

An implementation in JavaScript for Node.js that provides the ability to create accounts for the video game Old School RuneScape®.


Version published
Weekly downloads
4
decreased by-60%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Runescape Account Creator

npm GitHub

What is Runescape Account Creator?

Runescape Account Creator is an implementation in JavaScript for Node.js that provides the ability to create accounts for the video game RuneScape®.

Installation

Install via npm:

npm install runescape-account-creator

Usage

The request is Promise based therfore we call .then() in order to access the response once it has been recieved.

const account = require('runescape-account-creator');
const two_captcha_api_key = 'YOUR_TWO_CAPTCHA_API_KEY';

account.create(two_captcha_api_key).then(response => {
    console.log(response)
}).catch(function (error) {
    return error;
});

The request returns the account data as JSON. The response JSON element returns ACCOUNT_CREATED, INVALID_CREDENTIALS or BAD_CAPTCHA depending on the response.

{
	"email": "example@gmail.com",
	"password": "password",
	"proxy": "",
	"response": "ACCOUNT_CREATED"
}

See examples.js for more examples.

Parameters

  • two_captcha_api_key Your 2Captcha API key.
    • Required: Yes
  • email The email to use when creating the account. If none is provided, one will be generated.
    • Required: No
  • password The password to use when creating the account. If none is provided, one will be generated.
    • Required: No
  • socks_ip The socks5 proxy ip address to use when requesting the solved captcha and creating the account.
    • Required: No
  • socks_port The socks5 proxy port to use when requesting the solved captcha and creating the account.
    • Required: No
  • socks_username The socks5 proxy username to use when requesting the solved captcha and creating the account.
    • Required: No
  • socks_password The socks5 proxy password to use when requesting the solved captcha and creating the account.
    • Required: No

Dependencies

Keywords

FAQs

Last updated on 16 May 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc