PDA

View Full Version : [tutorial] [sa-mp]/setskin admin command



Royce.
01-04-2017, 09:01 AM
Acest code il puneti in pawno in gamemode sau faceti un fs cu el

if(strcmp(cmd, "/setskin", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pAdmin] >= 4)
{
new tmp2[256];
tmp = strtok(cmdtext, idx);
new otherplayer = strval(tmp);
tmp2 = strtok(cmdtext, idx);
new skin = strval(tmp2);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "USAGE: /setskin [id] [idskin]");
return 1;
}
if(!strlen(tmp2))
{
SendClientMessage(playerid, COLOR_WHITE, "USAGE: /setskin [id] [idskin]");
return 1;
}
SetPlayerSkin(otherplayer, skin);
SendClientMessage(otherplayer, COLOR_YELLOW, "An admin changed your skin.");
new amsg[256];
GetPlayerName(playerid, playername, sizeof(playername));
format(amsg, sizeof(amsg), "%s changed the skin of .", playername);

}
else
{
SendClientMessage(playerid, COLOR_RED, "You are not admin !");
return 1;
}
}
return 1;
}