07.04.2012, 19:45
How would i make it so if a player enters a certain ID that contains a skin that a group has how would i stop them from using it
So like if they choose a certain skin ID how could i stop them from selecting it
Please Help Me Please
So like if they choose a certain skin ID how could i stop them from selecting it
pawn Код:
if(dialogid == DIALOG_BUYCLOTHES)
{
if(response)
{
new clothes = strval(inputtext);
{
SetPlayerSkin( playerid, strval( inputtext ) );
SaveAccountStats(playerid);
SendClientMessage(playerid, COLOR_GOLD, "Skin changed");
}
}
}
Please Help Me Please