Skip to content

Commit f5d4a28

Browse files
authored
Update readme auth doc (#3169)
Mention how auth works in readme with link to nmp API.md and add realm login doc from node-minecraft-protocol's readme
1 parent ab3c0cf commit f5d4a28

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

docs/README.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,11 @@ const mineflayer = require('mineflayer')
8080

8181
const bot = mineflayer.createBot({
8282
host: 'localhost', // minecraft server ip
83-
username: '[email protected]', // minecraft username
83+
username: 'Bot', // username or email, switch if you want to change accounts
8484
auth: 'microsoft' // for offline mode servers, you can set this to 'offline'
8585
// port: 25565, // only set if you need a port that isn't 25565
8686
// version: false, // only set if you need a specific version or snapshot (ie: "1.8.9" or "1.16.5"), otherwise it's set automatically
87-
// password: '12345678' // set if you want to use password-based auth (may be unreliable)
87+
// password: '12345678' // set if you want to use password-based auth (may be unreliable). If specified, the `username` must be an email
8888
})
8989

9090
bot.on('chat', (username, message) => {
@@ -97,6 +97,26 @@ bot.on('kicked', console.log)
9797
bot.on('error', console.log)
9898
```
9999

100+
If `auth` is set to `microsoft`, you will be prompted to login to microsoft.com with a code in your browser. After signing in on your browser,
101+
the bot will automatically obtain and cache authentication tokens in the local file system so you don't have to sign-in again.
102+
To switch the account, update the supplied `username`. By default, cached tokens will be stored in your user's .minecraft folder.
103+
For more information on these options and others, see node-minecraft-protocol's [API doc](https://github.com/PrismarineJS/node-minecraft-protocol/blob/master/docs/API.md#mccreateclientoptions).
104+
105+
#### Connecting to a Realm
106+
107+
To join a Realm that your Minecraft account has been invited to, you can pass a `realms` object with a selector function like below.
108+
109+
```js
110+
const client = mineflayer.createBot({
111+
username: '[email protected]', // minecraft username
112+
realms: {
113+
// This function is called with an array of Realms the account can join. It should return the one it wants to join.
114+
pickRealm: (realms) => realms[0]
115+
},
116+
auth: 'microsoft'
117+
})
118+
```
119+
100120
### See what your bot is doing
101121

102122
Thanks to the [prismarine-viewer](https://github.com/PrismarineJS/prismarine-viewer) project, it's possible to display in a browser window what your bot is doing.

0 commit comments

Comments
 (0)