Get Started - Learn How To Make Your Bot!Code SnippetsGet methodsPost methodsWeb APIUseful linksList of all currently Free ItemsList of all currently Free EmotesHighrise 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.