πŸ‘• Get_my_outfit

πŸ‘• Get_my_outfit

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)
notion image
Β 
Built with Potion.so