You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
username:'Bot', // username or email, switch if you want to change accounts
84
84
auth:'microsoft'// for offline mode servers, you can set this to 'offline'
85
85
// port: 25565, // only set if you need a port that isn't 25565
86
86
// 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
88
88
})
89
89
90
90
bot.on('chat', (username, message) => {
@@ -97,6 +97,26 @@ bot.on('kicked', console.log)
97
97
bot.on('error', console.log)
98
98
```
99
99
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.
// 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
+
100
120
### See what your bot is doing
101
121
102
122
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