Get Started - Learn How To Make Your Bot!GuidesCode SnippetsGet methodsPost methodsWeb APIUseful linksList of all currently Free ItemsList of all currently Free EmotesHighrise Bot SDK Changelog
Β
Added on version 23.1.0b0
teleport(self, user_id: str, dest: Position) -> None:
This method teleport the user to the given position.
βοΈ Use cases
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.