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.3.0

get_my_outfit(self) -> GetUserOutfitRequest.GetUserOutfitResponse | Error:

Get the bot's outfit.

It returns list of items that bot has equipped.

⚙️ Use cases

Here is a simple on_chat trigger for this function to make the bot say the items they are wearing:

async def on_chat(self, user: User, message: str) -> None:
        if message.lower().startswith("/getoutfit"):
            response = await self.highrise.get_my_outfit()
            for item in response.outfit:
                await self.highrise.chat(item.id)

Untitled