Sitting Action:

The method move.sit() is used to make the bot sit on a specific object in the room. It requires two parameters: the entity ID of the object and the anchor index where the bot will sit. Note that the bot can only sit on objects that players are not sitting on, unless the object has multiple anchor indices that can be changed using 0 and 1 as indexes.

Note: The bot can only sit on objects that players are not sitting on, unless the object has multiple anchor indices that can be changed using 0 and 1 as indexes. If an object has more than one anchor index, the index parameter (0 or 1) can be used to specify the anchor index for sitting.

// Assuming you have defined the Highrise instance as "bot".
bot.on("chatCreate", async (user, message) => {
  if (message === "sit") {
    bot.move.sit("fb5a130318c4dabfa0eb8aac", 0).catch(e => console.error(e));
  }
});

Go Back: Bot Movements