Chat System(solved)

Hello,I have a question does colyseus provide a built in chat room or a chat message management system? I'm looking to send messages between clients and not just broadcast messages, I looked in the docs but couldn't find much.

Hi, this is a simple chat room: https://github.com/colyseus/colyseus-examples/blob/master/src/rooms/01-chat-room.ts
"chat management system", I think you mean a buddy system, unfortunatlly there's not a build in system like this, but
you can make one yourself with send function: https://docs.colyseus.io/colyseus/server/room/#send-client-message

@COCO Hi , thank you for you response .