Option to remove reward when name changesSuggestion

Hello! 
Have been googling around without any success. Im wondering if someone knowns about any plugin that grants you a oxide group/permission when having a specific phrase or text in your name. Let's say my name "Bagge advertise.net". My plan is to grant people right to do a specific kit whenever doing this. I found one plugin "Name Rewards" but it's missing the ability to remove someone from the group/permission whenever they stop using the phrase, It can only add.

you can ask the auther to update it or try and change it to this see if it works for you not tested.
        void OnUserConnected(IPlayer player)
        {
            foreach (var phrase in config.Phrases)
            {
                if (player.Name.ToLower().Contains(phrase.ToLower() && !permission.UserHasGroup(player.Id, config.Group))
                {
					permission.AddUserGroup(player.Id, config.Group);
					break;
                }
				if (!player.Name.ToLower().Contains(phrase.ToLower() && permission.UserHasGroup(player.Id, config.Group))
					permission.RemoveUserGroup(player.Id, config.Group);
            }
        }
    }
}

Thanks for response,

@Tricky personally helped me on discord so it's all sorted out now (:

Wulf is it possible to integrate this? 

Is there anyone that could integrate what is in the post mentioned above. If player removes the phrase from the name, the permission will then be removed.

Kind regard!

Bagge

Thanks for response,

@Tricky personally helped me on discord so it's all sorted out now (:

Can i get the updated one Please? I too want  the ability to remove someone from the group/permission whenever they stop using the phrase.

i really hope this can get fixed at somepoint its such a handy plugin