Just wanted to release this for fun, took maybe 5 minutes to make it so enjoy. It will seat a Habbo in any room. You can modify as need be for Uber.
Thought I would release this for the lols so have fun.
Screenshots
Code
Code:private static void cmd_sit() { TargetRoomUser = Session.GetHabbo().CurrentRoom.GetRoomUserByHabbo(Session.GetHabbo().Username); if (TargetRoomUser.Statusses.ContainsKey("sit") == false) { // Checks body position (ensures it is not diagonal). // @notes: // - Do not check head position as it swivels when Habbos talk in the room. if ((TargetRoomUser.RotBody % 2) == 0) { // Sets seated status. TargetRoomUser.Statusses.Add("sit", "1.0"); // Puts them on the ground level of the room. Comment out to have them 1 space above the ground. TargetRoomUser.Z = -0.5; } // Sends update to Habbo in-game. if (TargetRoomUser.Statusses.ContainsKey("sit") == true) { // Updates Habbo. BaalEnvironment.GetGame().GetRoomManager().GetRoom(Session.GetHabbo().CurrentRoomId).UpdateUserStatus(TargetRoomUser, true); Session.SendNotif("You are now seated."); } else { Session.SendNotif("You cannot be seated diagonally."); } } else { Session.SendNotif("You are already seated! Relax."); } }




![Habbo Emulator - Sit Command [r63]](http://ragezone.com/hyper728.png)

. #PheonixProbs

