13.01.2011, 18:25
Example ( a command, which need the skin ID 167 [chicken] )
pawn Код:
if(!strcmp(cmdtext, "/need", true))
{
if(GetPlayerSkin(playerid) != 167) return false; // If player skin isn't 167, nothing happens ! | != means 'different'
else return // Else from that first condition, will return functions
return 1;
}