Get Started - Learn How To Make Your Bot!GuidesCode SnippetsGet methodsPost methodsWeb APIUseful linksList of all currently Free ItemsList of EmotesHighrise Bot SDK Changelog
Added on version 23.1.0b0
chat(self, message: str) -> None:
Used to make the bot send a message on wide-chat.βοΈ Use cases
This is probably the most used post method. Itβs fundamental for communication between the bot and the users in the room. This method receives a string message.
async def on_start(self, SessionMetadata: SessionMetadata) -> None: await self.highrise.chat("Hello, world!")
This will make the bot say βHello, world!β in the chat on start: