Get Started - Learn How To Make Your Bot!Code SnippetsGet methodsPost methodsWeb APIUseful linksList of all currently Free ItemsList of all currently Free EmotesHighrise 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)
Β