File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 9
9
const mineflayer = require ( 'mineflayer' )
10
10
11
11
if ( process . argv . length < 4 || process . argv . length > 6 ) {
12
- console . log ( 'Usage : node echo.js <host> <port> [<name>] [<password> ]' )
12
+ console . log ( 'Usage : node echo.js <host> <port> [<name>] [online? ]' )
13
13
process . exit ( 1 )
14
14
}
15
15
16
16
const bot = mineflayer . createBot ( {
17
17
host : process . argv [ 2 ] ,
18
18
port : parseInt ( process . argv [ 3 ] ) ,
19
19
username : process . argv [ 4 ] ? process . argv [ 4 ] : 'echo' ,
20
- password : process . argv [ 5 ]
20
+ auth : process . argv [ 5 ] ? 'microsoft' : 'offline'
21
21
} )
22
22
23
23
bot . on ( 'chat' , ( username , message ) => {
24
24
if ( username === bot . username ) return
25
25
bot . chat ( message )
26
26
} )
27
+
28
+ bot . on ( 'kicked' , ( reason ) => {
29
+ console . log ( 'I was kicked from the server: ' + reason )
30
+ } )
Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ function inject (bot, options) {
55
55
if ( packet . worldType && ! bot . game . dimension ) {
56
56
bot . game . dimension = packet . worldType . replace ( 'minecraft:' , '' )
57
57
}
58
- console . log ( '*Dimension data' , bot . game . dimension , bot . registry . dimensionsByName , packet )
59
58
const dimData = bot . registry . dimensionsByName [ bot . game . dimension ]
60
59
if ( dimData ) {
61
60
bot . game . minY = dimData . minY
@@ -79,7 +78,6 @@ function inject (bot, options) {
79
78
80
79
// 1.20.2
81
80
bot . _client . on ( 'registry_data' , ( packet ) => {
82
- console . log ( 'Loading Dimension Codec' , JSON . stringify ( packet ) . slice ( 0 , 100 ) )
83
81
bot . registry . loadDimensionCodec ( packet . codec || packet )
84
82
} )
85
83
You can’t perform that action at this time.
0 commit comments