new login method

This commit is contained in:
Pierce 2018-11-29 21:44:40 -05:00 committed by GitHub
parent d4a3f9b90b
commit 8d49706303
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,25 +6,23 @@ A script that launches Minecraft using NodeJS.
#### Usage #### Usage
```javascript ```javascript
const launch = require('./pathtomodule').core; const launcher = require('./pathtomodule');
launch({ launcher.authenticator("email", "password").then(auth => {
login: { launcher.core({
username: "", // required authorization: auth,
password: "", // optional
offline: false // optional
},
// All of the following is required // All of the following is required
root: "directory", // C:/Users/user/AppData/Roaming/.mc root: "directory", // C:/Users/user/AppData/Roaming/.mc
os: "windows", // windows, osx, linux os: "windows", // windows, osx, linux
version: { version: {
number: "1.12.2", // Minecraft version you want to launch number: "1.13.2", // Minecraft version you want to launch
type: "MC-Launcher" // Type. Can be anything type: "MCC-Launcher" // Type. Can be anything
}, },
memory: { memory: {
max: "5000" max: "500"
} }
}) });
});
``` ```
#### What should it look like running from console? #### What should it look like running from console?