Skip to content

Add arcade-chat extension - Multiplayer Chat for Arcade#7593

Open
b9oo wants to merge 2 commits into
microsoft:masterfrom
b9oo:patch-2
Open

Add arcade-chat extension - Multiplayer Chat for Arcade#7593
b9oo wants to merge 2 commits into
microsoft:masterfrom
b9oo:patch-2

Conversation

@b9oo

@b9oo b9oo commented Jun 25, 2026

Copy link
Copy Markdown

Add arcade-chat extension

Repository: https://github.com/YOUR-USERNAME/arcade-chat
Version: 1.0.3

What does this extension do?

Adds easy-to-use multiplayer chat functionality to MakeCode Arcade games.

Features

  • initialize multiplayer chat
  • send chat message [text]
  • on chat message received (event handler)
  • recent chat messages (array)
  • show chat messages (built-in display)
  • clear chat
  • my player number

Dependencies

  • arcade-mp (for multiplayer support)

How to use

chat.initializeChat()

controller.A.onEvent(ControllerButtonEvent.Pressed, function () {
    chat.sendMessage("Hello from player " + chat.myPlayerNumber())
})

chat.onMessageReceived(function (sender: number, message: string) {
    music.playTone(880, 200)
})

@b9oo

b9oo commented Jun 25, 2026

Copy link
Copy Markdown
Author

the github link actually is https://github.com/b9oo/multiplayer-chat-support/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant