2.0.0 • Published 6 years ago
rs-account-creator v2.0.0
Runescape Account Creator
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-creatorUsage
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_keyYour 2Captcha API key.- Required: Yes
 
- emailThe email to use when creating the account. If none is provided, one will be generated.- Required: No
 
- passwordThe password to use when creating the account. If none is provided, one will be generated.- Required: No
 
- socks_ipThe socks5 proxy ip address to use when requesting the solved captcha and creating the account.- Required: No
 
- socks_portThe socks5 proxy port to use when requesting the solved captcha and creating the account.- Required: No
 
- socks_usernameThe socks5 proxy username to use when requesting the solved captcha and creating the account.- Required: No
 
- socks_passwordThe socks5 proxy password to use when requesting the solved captcha and creating the account.- Required: No
 
