Might as well share my code for Butterstorm, Swift and Butterfly.
Go to Chatcommandhandler.cs
Search for enable
replace that void with this:
Code:
internal void enable()
{
Room currentRoom = this.Session.GetHabbo().CurrentRoom;
int effectId = int.Parse(this.Params[1]);
if (Session.GetHabbo().Rank < 5 && (effectId == 102 || effectId == 178))
this.Session.SendNotif("You do not have enough permissions to use this effect!");
else
this.Session.GetHabbo().GetAvatarEffectsInventoryComponent().ApplyCustomEffect(effectId);
}
Greetings!