ChrisRetro
Member
- Dec 14, 2013
- 144
- 15
if (Session.GetHabbo().GetPermissions().HasRight("mod_tool") && !Session.GetHabbo().DisableForcedEffects)
Session.GetHabbo().Effects().ApplyEffect(102);
if(Session.GetHabbo().Rank >= 4) && !Session.GetHabbo().DisableForcedEffects)
Session.GetHabbo().Effects().ApplyEffect(102);
Here we go again, Exactly what @Brad said but there is another spot too under "EnableCommand":How do i change the the rank that is allowed the enable staff enable on the head? PLUS EMU
@Sledmore
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.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; }