Get Started - Learn How To Make Your Bot!

Guides

Code Snippets

Get methods

Post methods

Web API

Useful links

List of all currently Free Items

List of Emotes

Highrise 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.