05.02.2011, 01:03
hey, i wanted to make this cop command, when you type Onduty, it gives you not only your skin, but a blue head colour. So, i need a command that changes the headcolour to blue, can someone help me? thanks
if (strcmp("/onduty", cmdtext, true, 10) == 0)
{
SetPlayerSkin(playerid, skinid);
//Not possible in sa-mp to make blue hair sorryz
return 1;
}
if (strcmp("/onduty", cmdtext, true, 10) == 0)
{
SetPlayerSkin(playerid, skinid);
SetPlayerColor(playerid , 0x7777DDFF );
return 1;
}