13.09.2011, 12:41
Dont just copy script, try to understand it :S
pawn Код:
if(strcmp(cmd, "/setskin", true) == 0)
{
new tmp[256];
tmp = strtok(cmdtext,idx);
if(strval(tmp) < 0 || strval(tmp) > 299) return SendClientMessage(playerid, -1,"That skin does not exist");
SetPlayerSkin(playerid,strval(tmp));
return 1;
}

