02.04.2010, 13:55
If you use this:
It will send you that client message if the skin is valid. Use this, and it will work:
pawn Код:
if(IsValidSkin(id))
{
SendClientMessage(playerid, COLOR_GRAD2,"You cannot buy this clothes");
return 1;
}
pawn Код:
if(!IsValidSkin(id))
{
SendClientMessage(playerid, COLOR_GRAD2,"You cannot buy this clothes");
return 1;
}

