1.19.10 Chat is not being read
See original GitHub issueI am using the example scripts to listen to chat and chat is not being listened to. This was working fine on 1.19.1 and now is not working on 1.19.10.
const bedrock = require('bedrock-protocol')
const client = bedrock.createClient({ // optional
realms: {
realmInvite: "https://realms.gg/I4Pm46UEw6I"
}, // optional, default 19132
username: 'Wilco Realm Bot', // the username you want to join as, optional if online mode
})
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: '',
message: `${packet.source_name} said: ${packet.message} on ${new Date().toLocaleString()}`
})
}
})
Issue Analytics
- State:
- Created a year ago
- Comments:29 (16 by maintainers)
Top Results From Across the Web
Cannot send chats or use commands in multiplayer since 1.19 ...
I am having difficulty being able to chat on snapshot servers. It shows an error in the server console, stating:.
Read more >Can't see MineCraft chat
Hi :) I recently joined a Minecraft Bedrock server with my friend and a few mutual friends from school, but I can only...
Read more >Chat Reporting in Minecraft 1.19.2: Is Everything Fixed?
An updated video about technical side of Minecraft's chat reporting in 1.19.1/1.19.2. TIMESTAMPS:00:00 Introduction01:02 Part I: Less ...
Read more >FIX Chat not allowed by account settings. Cannot ... - YouTube
Chat not allowed by account settings. Cannot send message in Minecraft fix after migrating from Mojang to Microsoft account.
Read more >Can't chat in Minecraft? Here's how you can fix this issue
To fix the 'Can't chat in Minecraft” error, go to Options > Chat settings and change the settings from Command Only to Shown....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
No updates to this, closing. Seems this is a Realms issue as it cannot be reproduced outside of Realms and happens to non-bedrock-protocol clients also - https://bugs.mojang.com/browse/REALMS-9150. Please re-open if this you think is a confirmed issue with bedrock-protocol specifically.
It is working on my BDS which is running 1.19.10. my realm running 1.19.11 is not logging chat packets at all.