Get Started - Learn How To Make Your Bot!

Guides

Code Snippets

Get methods

Post methods

Web API

Useful links

List of all currently Free Items

List of Emotes

Highrise 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:

1681348257313.png