Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
[HELP]How To Stop :enable 102 (Staff Badge Above Head) From NON-STAFF
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="13rad" data-source="post: 324395" data-attributes="member: 37541"><p>Was given out on the thread the enable was released use Visual Studios to open your emulators source go to ChatCommandHandler.cs and replace case 11 with this</p><p>[CODE]</p><p>case 11:</p><p>if (Session.GetHabbo().HasFuse("cmd_enable"))</p><p>{</p><p>int int_ = int.Parse(Params[1]);</p><p>if (Session.GetHabbo().Rank > 5 && int_ == 102 || int_ == 178)</p><p>{</p><p>Session.SendNotif("You are not allowed to preform this enable.");</p><p>return true;</p><p>}</p><p>else</p><p>{</p><p>Session.GetHabbo().method_24().method_2(int_, true);</p><p>Phoenix.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input);</p><p>}</p><p>return true;</p><p>}</p><p>return false;</p><p>[/CODE]</p><p>This wasn't done by me it was done by [USER=51705]@Moonshine[/USER]</p></blockquote><p></p>
[QUOTE="13rad, post: 324395, member: 37541"] Was given out on the thread the enable was released use Visual Studios to open your emulators source go to ChatCommandHandler.cs and replace case 11 with this [CODE] case 11: if (Session.GetHabbo().HasFuse("cmd_enable")) { int int_ = int.Parse(Params[1]); if (Session.GetHabbo().Rank > 5 && int_ == 102 || int_ == 178) { Session.SendNotif("You are not allowed to preform this enable."); return true; } else { Session.GetHabbo().method_24().method_2(int_, true); Phoenix.GetGame().GetClientManager().method_31(Session, Params[0].ToLower(), Input); } return true; } return false; [/CODE] This wasn't done by me it was done by [USER=51705]@Moonshine[/USER] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
[HELP]How To Stop :enable 102 (Staff Badge Above Head) From NON-STAFF
Top