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
Custom Chat Bubble not working after editting Habbo Emulator
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="Karel" data-source="post: 450714" data-attributes="member: 86045"><p>Hi, I'm trying to edit some code in the emulator for my hotel. I wanted rank 4 to get the staff badge above their heads, so I made the emulator assign effect 102 to them and the staff-chatbubble. The same for the helpers, but then for the helper effect and the helper bubble.</p><p></p><p>After entering a room, I can't pick other bubbles with the button next to the type-column. :bubble does work.</p><p></p><p>This is the code I added in the RoomUserManager.cs</p><p>[CODE=csharp]if (Session.GetHabbo().Rank.Equals(4))</p><p> {</p><p> Session.GetHabbo().Effects().ApplyEffect(102);</p><p> Session.GetHabbo().CustomBubbleId = 23;</p><p> }</p><p></p><p> if (Session.GetHabbo().Rank.Equals(3))</p><p> {</p><p> Session.GetHabbo().Effects().ApplyEffect(102);</p><p> Session.GetHabbo().CustomBubbleId = 23;</p><p> }</p><p> </p><p> if (Session.GetHabbo().Rank.Equals(2))</p><p> {</p><p> Session.GetHabbo().Effects().ApplyEffect(178);</p><p> Session.GetHabbo().CustomBubbleId = 37;</p><p> }[/CODE]</p><p></p><p>There are no errors in the logs and the emulator.</p><p></p><p>Does anybody know how to fix this?</p><p>Thanks!</p></blockquote><p></p>
[QUOTE="Karel, post: 450714, member: 86045"] Hi, I'm trying to edit some code in the emulator for my hotel. I wanted rank 4 to get the staff badge above their heads, so I made the emulator assign effect 102 to them and the staff-chatbubble. The same for the helpers, but then for the helper effect and the helper bubble. After entering a room, I can't pick other bubbles with the button next to the type-column. :bubble does work. This is the code I added in the RoomUserManager.cs [CODE=csharp]if (Session.GetHabbo().Rank.Equals(4)) { Session.GetHabbo().Effects().ApplyEffect(102); Session.GetHabbo().CustomBubbleId = 23; } if (Session.GetHabbo().Rank.Equals(3)) { Session.GetHabbo().Effects().ApplyEffect(102); Session.GetHabbo().CustomBubbleId = 23; } if (Session.GetHabbo().Rank.Equals(2)) { Session.GetHabbo().Effects().ApplyEffect(178); Session.GetHabbo().CustomBubbleId = 37; }[/CODE] There are no errors in the logs and the emulator. Does anybody know how to fix this? Thanks! [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Custom Chat Bubble not working after editting Habbo Emulator
Top