Enable Above Head

Brad

Well-Known Member
Jun 5, 2012
2,319
992
goto RoomUserManager and find
Code:
if (Session.GetHabbo().GetPermissions().HasRight("mod_tool") && !Session.GetHabbo().DisableForcedEffects)
                Session.GetHabbo().Effects().ApplyEffect(102);

change it to
Code:
if(Session.GetHabbo().Rank >= 4) && !Session.GetHabbo().DisableForcedEffects)
                Session.GetHabbo().Effects().ApplyEffect(102);
 

JayC

Always Learning
Aug 8, 2013
5,493
1,398
How do i change the the rank that is allowed the enable staff enable on the head? PLUS EMU
 
@Sledmore
Here we go again, Exactly what @Brad said but there is another spot too under "EnableCommand":
Code:
if ((EffectId == 102 || EffectId == 187) && !Session.GetHabbo().GetPermissions().HasRight("mod_tool"))
            {
                Session.SendWhisper("Sorry, only staff members can use this effects.");
                return;
            }
 

Brad

Well-Known Member
Jun 5, 2012
2,319
992
Here we go again, Exactly what @Brad said but there is another spot too under "EnableCommand":
Code:
if ((EffectId == 102 || EffectId == 187) && !Session.GetHabbo().GetPermissions().HasRight("mod_tool"))
            {
                Session.SendWhisper("Sorry, only staff members can use this effects.");
                return;
            }
oh yeah, I got mixed up with what he said lol.
 

Users who are viewing this thread

Top