if (Session.GetHabbo().GetPermissions().HasRight("mod_tool") && !Session.GetHabbo().DisableForcedEffects)
Session.GetHabbo().Effects().ApplyEffect(102);
if (Session.GetHabbo().Rank => 3 && !Session.GetHabbo().DisableForcedEffects)
Session.GetHabbo().Effects().ApplyEffect(102);
Change this?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:
Change this to:Code:if (Session.GetHabbo().GetPermissions().HasRight("mod_tool") && !Session.GetHabbo().DisableForcedEffects) Session.GetHabbo().Effects().ApplyEffect(102);
Hope this helpedCode:if (Session.GetHabbo().Rank => 3 && !Session.GetHabbo().DisableForcedEffects) Session.GetHabbo().Effects().ApplyEffect(102);
if (Session.GetHabbo().GetPermissions().HasRight("mod_tool") && !Session.GetHabbo().DisableForcedEffects)
Session.GetHabbo().Effects().ApplyEffect(102);
if (Session.GetHabbo().Rank > 3 && !Session.GetHabbo().DisableForcedEffects)
Session.GetHabbo().Effects().ApplyEffect(102);