mirror of
https://github.com/artegoser/pimi-launcher-core.git
synced 2024-11-22 04:06:21 +03:00
new login method
This commit is contained in:
parent
d4a3f9b90b
commit
8d49706303
1 changed files with 15 additions and 17 deletions
32
README.md
32
README.md
|
@ -6,25 +6,23 @@ A script that launches Minecraft using NodeJS.
|
|||
#### Usage
|
||||
|
||||
```javascript
|
||||
const launch = require('./pathtomodule').core;
|
||||
const launcher = require('./pathtomodule');
|
||||
|
||||
launch({
|
||||
login: {
|
||||
username: "", // required
|
||||
password: "", // optional
|
||||
offline: false // optional
|
||||
},
|
||||
launcher.authenticator("email", "password").then(auth => {
|
||||
launcher.core({
|
||||
authorization: auth,
|
||||
// All of the following is required
|
||||
root: "directory", // C:/Users/user/AppData/Roaming/.mc
|
||||
os: "windows", // windows, osx, linux
|
||||
version: {
|
||||
number: "1.12.2", // Minecraft version you want to launch
|
||||
type: "MC-Launcher" // Type. Can be anything
|
||||
},
|
||||
memory: {
|
||||
max: "5000"
|
||||
}
|
||||
})
|
||||
root: "directory", // C:/Users/user/AppData/Roaming/.mc
|
||||
os: "windows", // windows, osx, linux
|
||||
version: {
|
||||
number: "1.13.2", // Minecraft version you want to launch
|
||||
type: "MCC-Launcher" // Type. Can be anything
|
||||
},
|
||||
memory: {
|
||||
max: "500"
|
||||
}
|
||||
});
|
||||
});
|
||||
```
|
||||
|
||||
#### What should it look like running from console?
|
||||
|
|
Loading…
Add table
Reference in a new issue