07.09.2013, 09:40
Quote:
Oops, I didn't get you right.
I thought you wanted him to be able to set everyone's color, so that's what the command I posted above does. But here you go, I made you a new command, using this he will only be able to set his own color. PHP код:
|
pawn Код:
switch( color )
{
case 0: SetPlayerColor(playerid, 0x000000FF);
case 1: SetPlayerColor(playerid, 0xFFFFFFFF);
case 2: SetPlayerColor(playerid, 0xFF0000FF);
case 3: SetPlayerColor(playerid, /* orange here */);
case 4: SetPlayerColor(playerid, 0xFFFF00FF);
case 5: SetPlayerColor(playerid, 0x00FF00FF);
case 6: SetPlayerColor(playerid, 0x0000FFFF);
case 7: SetPlayerColor(playerid, /* purple here */);
case 8: SetPlayerColor(playerid, /* brown here */);
case 9: SetPlayerColor(playerid, /* pink here */);
}