26.02.2014, 07:43
Hmmm, to save the color depends of you because only you knows what's in your script
I hope this will help you!
REGARDS
I hope this will help you!
pawn Код:
#define RGBCOLOR(%1,%2,%3,%4) (((((%1) & 0xff) << 24) | (((%2) & 0xff) << 16) | (((%3) & 0xff) << 8) | ((%4) & 0xff)))
// Example //
SetPlayerColor( playerid, RGBCOLOR( random( 235 ) + 20, random( 235 ) + 20, random( 235 ) + 20, 90 ) );