Welcome to the RaGEZONE - MMORPG development forums.

Habbo Emulator - Sit Command [r63]

This is a discussion on Habbo Emulator - Sit Command [r63] within the Habbo Releases forums, part of the Habbo Hotel category; Just wanted to release this for fun, took maybe 5 minutes to make it so enjoy. It will seat a ...

Page 1 of 2 12 LastLast
Results 1 to 15 of 30
  1. #1
    Banned
    Rank
    Banned
    Join Date
    Jun 2012
    Location
    Canada
    Posts
    51
    Liked
    11
    Gamertag: thejacobpollack

    Habbo Emulator - Sit Command [r63]

    Click
    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.");
                }
            }
    Last edited by TheLongP; 23-06-12 at 06:15 PM. Reason: Enabled signatures.

  2. #2
    Account Upgraded | Title Enabled!
    Rank
    Member +
    Join Date
    Jan 2012
    Location
    Netherlands
    Posts
    351
    Liked
    96

    Re: Habbo Emulator - Sit Command [r63]

    Nice :)
    Sorry for my bad English I'm from the Netherlands.

    I'm Back bitch ;d
    Arjanterheegde.nl | retrotop100.nl | topserverlist.nl | drabbo.nl

    Love her

  3. #3
    Member
    Rank
    Member
    Join Date
    Jan 2012
    Posts
    48
    Liked
    0

    Re: Habbo Emulator - Sit Command [r63]

    can you make it work on phoenix 3.7.4?

  4. #4
    Otaku
    Rank
    Subscriber
    Join Date
    Nov 2006
    Location
    Scotland
    Posts
    1,275
    Liked
    693
    Gamertag: ShadySojobo

    Re: Habbo Emulator - Sit Command [r63]

    Quote Originally Posted by debaaske6 View Post
    can you make it work on phoenix 3.7.4?
    Phoenix 3.7.4 already has a sit command and it doesn't spam you with pointless alerts either.

  5. #5
    Member
    Rank
    Member
    Join Date
    Jan 2012
    Posts
    48
    Liked
    0

    Re: Habbo Emulator - Sit Command [r63]

    Quote Originally Posted by Sojobo View Post
    Phoenix 3.7.4 already has a sit command and it doesn't spam you with pointless alerts either.
    it doesn't work on my hotel when i do :sit i become invisible

  6. #6
    Banned
    Rank
    Banned
    Join Date
    Jun 2012
    Location
    Canada
    Posts
    51
    Liked
    11
    Gamertag: thejacobpollack

    Re: Habbo Emulator - Sit Command [r63]

    Quote Originally Posted by debaaske6 View Post
    it doesn't work on my hotel when i do :sit i become invisible
    That's Pheonix for you . #PheonixProbs

  7. #7
    Registered
    Rank
    Member
    Join Date
    Jun 2012
    Posts
    4
    Liked
    0

    Re: Habbo Emulator - Sit Command [r63]

    Workaround for the diagonal thing:

    if ((TargetRoomUser.RotBody % 2) != 0)
    TargetRoomUser.RotBody--;
    else
    {
    ....
    }

  8. #8
    Dwight Schrute
    Rank
    Subscriber
    Join Date
    May 2011
    Posts
    250
    Liked
    60

    Re: Habbo Emulator - Sit Command [r63]

    Quote Originally Posted by debaaske6 View Post
    it doesn't work on my hotel when i do :sit i become invisible
    You are probably using cracked.

  9. #9
    Member
    Rank
    Member
    Join Date
    Jan 2012
    Posts
    48
    Liked
    0

    Re: Habbo Emulator - Sit Command [r63]

    Quote Originally Posted by Exonize View Post
    You are probably using cracked.
    nope i'm using license 3.7.4 isn't cracked

  10. #10
    Member
    Rank
    Member
    Join Date
    May 2011
    Location
    Tilburg, Nether
    Posts
    36
    Liked
    0
    Gamertag: Monchanevada7

    Re: Habbo Emulator - Sit Command [r63]

    Search on O.taku for Fix
    Its with your VPS/Dedi settings, i tink.
    [SIGPIC][/SIGPIC]

  11. #11
    Banned
    Rank
    Banned
    Join Date
    Jun 2012
    Location
    Canada
    Posts
    51
    Liked
    11
    Gamertag: thejacobpollack

    Re: Habbo Emulator - Sit Command [r63]

    Quote Originally Posted by MrWw View Post
    Workaround for the diagonal thing:

    if ((TargetRoomUser.RotBody % 2) != 0)
    TargetRoomUser.RotBody--;
    else
    {
    ....
    }
    I was thinking of doing this rather than just sending them the message but I decided I would just send them the message. This is a viable change to the code though.

  12. #12
    Iron like Lion in Zion!
    Rank
    Moderator
    Join Date
    Apr 2009
    Location
    Nassau, Bahamas
    Posts
    2,963
    Liked
    812
    Gamertag: SCREAM c9

    Re: Habbo Emulator - Sit Command [r63]

    Not bad Jacob, can I expect more releases from you on here?
    Take it easy,
    - vLife


  13. #13
    Banned
    Rank
    Banned
    Join Date
    Jun 2012
    Location
    Canada
    Posts
    51
    Liked
    11
    Gamertag: thejacobpollack

    Re: Habbo Emulator - Sit Command [r63]

    Quote Originally Posted by vLife View Post
    Not bad Jacob, can I expect more releases from you on here?
    If you can convince someone to not ban me right off the bat then yes you can expect me to release quite a few things, all open source (maybe not open source during development).

  14. #14
    Iron like Lion in Zion!
    Rank
    Moderator
    Join Date
    Apr 2009
    Location
    Nassau, Bahamas
    Posts
    2,963
    Liked
    812
    Gamertag: SCREAM c9

    Re: Habbo Emulator - Sit Command [r63]

    That I can help with. It has been a long time and I'm sure most have gotten over it, though no one at the time wanted to listen to reason.
    Take it easy,
    - vLife


  15. #15
    Banned
    Rank
    Banned
    Join Date
    Jun 2012
    Location
    Canada
    Posts
    51
    Liked
    11
    Gamertag: thejacobpollack

    Re: Habbo Emulator - Sit Command [r63]

    Quote Originally Posted by vLife View Post
    That I can help with. It has been a long time and I'm sure most have gotten over it, though no one at the time wanted to listen to reason.
    Possibly. But this is a matter for PM, not really for this thread. I am just putting together some ideas for the project I plan to do, it will be the colosal finale in my opinion, just writing out the details of the project right now so I can figure out everything.

 

 
Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •