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

walk_to(self, destination: Position | AnchorPosition) -> None: Makes the bot walk to a given position in the room or a given AnchorPosition object.

⚙️ Use cases

This method receives a Position class composed by 3 floats that refers to the axises x, y, z.

async def on_start(self, SessionMetadata: SessionMetadata) -> None:
        await self.highrise.walk_to(Position(10, 0, 11))

In this case the bot walk the position 10, 0, 11 as soon as it starts.