You already posted about this tho?
These are the steps I go through when using the UI Editor:
1. Browse for your Habbo.Swf
2. BACKUP!! - Very important
3. Do whatever changes I need to do
4. Save
5. Copy to original
(extra) If the changes work, I backup it up again (it's the most recent...
1. Open the project/solution
2. Create the command in what ever file you want, preferably you'd want it in HabboHotel -> Rooms -> Chat -> Commands -> User
3. Go to CommandManager.cs, in the RegisterUser method and register your command: this.Register("<the name you want the command to be>"...
Also, with permissions_commands, I didn't want to keep adding unto it. Instead of command_(command), I used command_user if it was a user command, command_vip, if the command was VIP. In the command cs file, just do this:
public string PermissionsRequired => "command_user";
And the query...
Basically, you have to route to the command. So SuperPullCommand.cs. Look for :
public string Description
{
get { return "Edit this to your liking...."; }
}
Debug it, and you're good to go.
It only shows to the "Session". You need to add a foreach so it shows to everyone ABOVE RANK 2..
As Damien said, You already returned if the "Session" is less than 2. After that you could add an else. So it would be:
if (Session.GetHabbo().Rank < 2)
{...