[HELP] PlusEmu :info window

Newbie Spellweaver
Joined
Nov 16, 2012
Messages
49
Reaction score
1
Hello there, i really want to change my emulator information window in the hotel client.

From:

To this:

So what i need an answer for is how do i edit the style to be like that? Please help :(
 
Hakuna Matata
Joined
Sep 5, 2012
Messages
804
Reaction score
137
What file is the commands coded in, in the plusemu?

HabboHotel/Misc/ChatCommandHandler.cs

Code:
 #region About (:about)
                case "about":
                case "info":
                    {
                        if (Session.GetHabbo().HasCmd("about"))
                        {
                            Session.SendNotif("Text here");
                        }
                        return true;
                    }
                #endregion

Next time, search for what you need to change. CTRLF + F and look in entire solution.
 
Upvote 0
Newbie Spellweaver
Joined
Nov 16, 2012
Messages
49
Reaction score
1
HabboHotel/Misc/ChatCommandHandler.cs

Code:
 #region About (:about)
                case "about":
                case "info":
                    {
                        if (Session.GetHabbo().HasCmd("about"))
                        {
                            Session.SendNotif("Text here");
                        }
                        return true;
                    }
                #endregion

Next time, search for what you need to change. CTRLF + F and look in entire solution.

Okay, thank you and mod please close thread its solved.
 
Upvote 0
Back
Top