πŸ’¬ On_chat

πŸ’¬ On_chat

Added on version 23.1.0b0
on_chat(self, user: User, message: str) -> None Called when a room-wide chat message is received.

βš™οΈ Use cases

This method can be used to get all the messages and the User class of who sended it in the room-wide chat:
async def on_chat(self, user: User, message: str) -> None: print(f"{user.username}: {message}")
In this example we will print on the terminal all messages sent in the room-wide chat by players:
notion image
notion image
Β 

Built with Potion.so