Badge STaff on Head

MasterJiq

Member
Jul 8, 2016
385
23
Hello,

How do I make staff badge on head only rank for above 6 ? Seems like my hotel, rank 2 got staff badge on head.

Thanks
 

JynX

Posting Freak
Feb 6, 2016
710
438
Find this in the RoomUserManager:
Code:
if (Session.GetHabbo().GetPermissions().HasRight("mod_tool") && !Session.GetHabbo().DisableForcedEffects)
                Session.GetHabbo().Effects().ApplyEffect(102);
Replace it with this:
Code:
if (Session.GetHabbo().Rank > 6 && !Session.GetHabbo().DisableForcedEffects)
                Session.GetHabbo().Effects().ApplyEffect(102);
Feel free to change the > 6 to whatever you please >= # <= # etc.
 

Users who are viewing this thread

Top