Quote:
Originally Posted by LetsOWN[PL]
Hello.
You've to store player's color when they leave in some external place (e.g. file or in database) and then load it up when player connects. That's pretty much it.
And about /mycolor ® (g) (b). It's pretty easy to do:
pawn Код:
COMMAND:mycolor( playerid, params[] ){ new Red, Green, Blue ; if( sscanf(params, "ddd", Red, Green, Blue) ) { SendClientMessage( playerid, -1, "Use: /mycolor R G B"); return 1; } if( ( Red >= 0 && Green >= 0 && Blue >= 0 ) && ( Red <= 255 && Green <= 255 && Blue <= 255 ) ) { new mixedColor = 0; mixedColor = (Red << 24) + (Green << 16) + (Blue << 8) + 255; SetPlayerColor( playerid, mixedColor ); SendClientMessage( playerid, -1, "Done!"); return 1; } else { SendClientMessage( playerid, -1, "Error: one or more channels are out of bounds (0<>255)"); return 1; } }
Greetings.
|
Yes But How to make it Stay must If i left the Server and re - back it will Stay and if iwant remove RGB color must DO CMD reset Color