Get Started - Learn How To Make Your Bot!
List of all currently Free Items
Added on version 23.1.0b0
teleport(self, user_id: str, dest: Position) -> None:
This method teleport the user to the given position.
This method receives an userID and a Position class composed by 3 floats that refers to the axises x, y, z.
async def on_user_join(self, user: User, position: Position | AnchorPosition) -> None:
await self.highrise.teleport(user.id, Position(10, 0, 11))
In this example the bot will teleport all users that joins the room to the given Position.