I noticed a small mistake:
In the "ckick" section
Line 766
name = Player.Name.replace('[' + clan + ']', '').strip(' ')
has to be
name = playerr.Name.replace('[' + clan + ']', '').strip(' ')
Otherwise the player who got kicked out of a clan will get the name of the person who kicked him.
In the "ckick" section
Line 766
name = Player.Name.replace('[' + clan + ']', '').strip(' ')
has to be
name = playerr.Name.replace('[' + clan + ']', '').strip(' ')
Otherwise the player who got kicked out of a clan will get the name of the person who kicked him.