Remove badge above hear

Twins

Danish Retro hotel owner
Jul 31, 2012
25
2
How do i find and remove the staff badge above the hear in Firewind Emu ?
AND
How do i update the navigator ingame ?
Version: 1.0.6
 

Kristo

Website & Software Developer
Feb 5, 2015
269
69
Can you provide screenshots of what you're talking about?

I believe he is referring to the removal of this.
go0pEn3.png
 

AssLikeThat

Posting Freak
Jan 27, 2013
765
154
RoomUserManager.cs
I'm not on visual studio right now but I'll guess it.
It should say something along the lines of if(user has modtool) - use this effect.
Where it says if(has modtools) change it to if(Session.getHabbo().Rank => 3)


Sorry if this didnt make much sense, I'm not at home.
 
I am on visual studio now..
Open RoomUserManager.cs and find this code:
Code:
            if (Session.GetHabbo().GetPermissions().HasRight("mod_tool") && !Session.GetHabbo().DisableForcedEffects)
                Session.GetHabbo().Effects().ApplyEffect(102);
Change this to:
Code:
            if (Session.GetHabbo().Rank => 3 && !Session.GetHabbo().DisableForcedEffects)
                Session.GetHabbo().Effects().ApplyEffect(102);
Hope this helped :D

Hope this is what you're looking for... I'm sure you can remove it rather than change it
 

AssLikeThat

Posting Freak
Jan 27, 2013
765
154
I'm pretty sure Firewind isnt structured like this, but shouldnt be too different i suppose
Ngl I didn't even read what Emu it was... lol

OP try using :enable 102, 178 on a user ranked 1. Check the message that comes up and search for that in Visual Studio maybe?

I'm not familiar with the way Firewind is coded so I won't be much help from here on out
 

Users who are viewing this thread

Top