18.07.2016, 00:19
change this:
To this:
PHP код:
if(!(strcmp(SkinName, "[BADBOY]", false) == 0)) //you checking if not strcmp equal to 0! And it should be if strcmp equal to zero
PHP код:
if(!strcmp(SkinName, "[BADBOY]", false))