bedrock-protocol/examples/client/client.js
TheLegendaryTrashcan c4593aa355
Fix example in README.md for 1.21 (#506)
* Fix example  in README.md for 1.21

* Update client.js

* Update README.md

---------

Co-authored-by: extremeheat <extreme@protonmail.ch>
2024-07-05 07:22:05 -04:00

17 lines
808 B
JavaScript

/* eslint-disable */
const bedrock = require('bedrock-protocol')
const client = bedrock.createClient({
host: 'localhost', // optional
port: 19132, // optional, default 19132
username: 'Notch', // the username you want to join as, optional if online mode
offline: false // optional, default false. if true, do not login with Xbox Live. You will not be asked to sign-in if set to true.
})
client.on('text', (packet) => { // Listen for chat messages and echo them back.
if (packet.source_name != client.username) {
client.queue('text', {
type: 'chat', needs_translation: false, source_name: client.username, xuid: '', platform_chat_id: '', filtered_message: '',
message: `${packet.source_name} said: ${packet.message} on ${new Date().toLocaleString()}`
})
}
})