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
Habbo phoenix emulator faceless command
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="reishin" data-source="post: 363516" data-attributes="member: 53007"><p>Insert this to Chat Command Handler</p><p>[Code]</p><p>case 100:</p><p> string[] figureParts;</p><p> string[] headParts;</p><p> figureParts = Session.GetHabbo().Figure.Split('.');</p><p> foreach (string Part in figureParts)</p><p> {</p><p> if (Part.StartsWith("hd"))</p><p> {</p><p> headParts = Part.Split('-');</p><p> if (!headParts[1].Equals("99999"))</p><p> headParts[1] = "99999";</p><p> else</p><p> break;</p><p> string NewHead = "hd-" + headParts[1] + "-" + headParts[2];</p><p> Session.GetHabbo().Figure = Session.GetHabbo().Figure.Replace(Part, NewHead);</p><p> break;</p><p> }</p><p> }</p><p> Session.GetHabbo().method_26(false, Session);</p><p> Session.GetHabbo().method_28("You're now faceless.");</p><p> return true;</p><p>[/Code]</p><p>Role Manager</p><p>[Code]this.dictionary_4.Add("faceless", 100);[/Code]</p></blockquote><p></p>
[QUOTE="reishin, post: 363516, member: 53007"] Insert this to Chat Command Handler [Code] case 100: string[] figureParts; string[] headParts; figureParts = Session.GetHabbo().Figure.Split('.'); foreach (string Part in figureParts) { if (Part.StartsWith("hd")) { headParts = Part.Split('-'); if (!headParts[1].Equals("99999")) headParts[1] = "99999"; else break; string NewHead = "hd-" + headParts[1] + "-" + headParts[2]; Session.GetHabbo().Figure = Session.GetHabbo().Figure.Replace(Part, NewHead); break; } } Session.GetHabbo().method_26(false, Session); Session.GetHabbo().method_28("You're now faceless."); return true; [/Code] Role Manager [Code]this.dictionary_4.Add("faceless", 100);[/Code] [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Habbo phoenix emulator faceless command
Top