16.07.2014, 03:02
change your code to this :
PHP код:
CMD:skin(playerid, params[])
{
new string[128], skinid;
if (IsPlayerAdmin(playerid))
{
if(sscanf(params, "d", skinid))
{
SendClientMessage(playerid, -1, "SYNTAX: /skin [ID]");
}
else
{
SetPlayerSkin(playerid, skinid);
format(string, sizeof(string), "You have set your skin to %d", skinid);
SendClientMessage(playerid, -1, string);
}
}
return 1;
}