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.0b8

on_user_move(self, user: User, pos: Position) -> None:

Called whenever an user moves in the room

⚙️Use cases

This method returns an User and a Position class everytime an User move in the room.

async def on_user_move(self, user: User, pos: Position) -> None:
        print (f"{user.username} moved to {pos}")

This code will simply print in your terminal the username and new position of every user that moves in the room.