Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[FIX] Shower Beach at 80% [FIX]

Status
Not open for further replies.
Banned
Banned
Joined
May 6, 2009
Messages
531
Reaction score
165
Hello Ragezone,
I come to bring a small fix, it makes little matter of work, more than is good to have something always seems to us to Habbo.com

Open your emulator in the directory: HabboHotel> Rooms> Room.cs

Look for:

Code:
                if (Item.GetBaseItem().InteractionType.ToLower() == "bed")
                {
                    if (!User.Statusses.ContainsKey("lay"))
                    {
                        User.Statusses.Add("lay", Item.GetBaseItem().Height.ToString().Replace(',', '.') + " null");
                    }

                    User.Z = Item.Z;
                    User.RotHead = Item.Rot;
                    User.RotBody = Item.Rot;

                    User.UpdateNeeded = true;
                }

And below this code, put this:

Code:
                if (Item.GetBaseItem().InteractionType.ToLower() == "shower")
                {
                    Item.ExtraData = "1";
                    Item.UpdateState(false, true);
                }

Soon I put the picture I put, because now I have to leave. But if someone can try and put the picture takes my thanks:thumbup1:

I hope I helped some, I know that this code is much more easy it's always good to be upgrading our forum!

Sorry for my English, it's because I'm Brazilian!:eek:tt1:

Credits:

TheCrash and Me :love:
 
Banned
Banned
Joined
May 6, 2009
Messages
531
Reaction score
165
Ready:

Furniture:

Code:
INSERT INTO furniture VALUES ('20382', 'bw_shower name', 'bw_shower', 's', '1', '1', '0', '0', '0', '1', '3540', '1', '1', '1', '1', '1', 'shower', '2', '0');

Catalog_items:

Code:
INSERT INTO catalog_items VALUES ('2510', '75', '20382', 'Beach Shower', '5', '0', '1');

Sorry for the delay
 
Custom Title Activated
Loyal Member
Joined
Oct 21, 2007
Messages
2,098
Reaction score
464
nice fix thanks for the furni
 
Status
Not open for further replies.
Back
Top