Get Started - Learn How To Make Your Bot!
List of all currently Free Items
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.
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)