Chat System(solved)

29 Apr 2022, 14:59

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.

30 Apr 2022, 07:21

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

3 May 2022, 13:02

@COCO Hi , thank you for you response .