23.03.2013, 00:26
Is There a way to get a color code 4 3 like Red White Blue...... and the color code fades
so likeeee its red and then the color white fades in to the blue..... u know
......


#define COLOR_LIGHTPINK 0xFFB6C1FF
#define COLOR_HOTPINK 0xFF69B4FF
#define COLOR_CORAL 0xFF7F50AA
#define COLOR_TOMATO 0xFF6347AA
#define COLOR_RED 0xFF0000FF
public OnPlayerDeath(playerid, killerid, reason)
{
FadePlayerScreen(playerid, 0xFFFFFFCC, 6, 192);
FadePlayerScreen(playerid, 0xFFB6C1FF, 6, 192);
FadePlayerScreen(playerid, 0xFF69B4FF, 6, 192);
FadePlayerScreen(playerid, 0xFF7F50AA, 6, 192);
FadePlayerScreen(playerid, 0xFF0000FF, 6, 192);
}
#define COLOR_FADE1 0xE6E6E6E6
#define COLOR_FADE2 0xC8C8C8C8
#define COLOR_FADE3 0xAAAAAAAA
#define COLOR_FADE4 0x8C8C8C8C
#define COLOR_FADE5 0x6E6E6E6E
SendNearbyMessage(playerid, 3.0, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
0,255 0,127,255 0,85,170,255 0,63,127,191,255 0,51,102,153,204,255
0x 00,ff 0x 00,7f,ff 0x 00,55,aa,ff 0x 00,3f,7f,bf,ff 0x 00,33,66,99,cc,ff
0xff0000 0xff3333 0xff6666 0xff9999 0xffcccc 0xffffff
0xffffff 0xccccff 0x9999ff 0x6666ff 0x3333ff 0x0000ff
new RedWhiteBlue[]={0xff0000,0xff3333,0xff6666,0xff9999,0xffcccc,0xffffff,0xffffff,0xccccff,0x9999ff,0x6666ff,0x3333ff,0x0000ff};
SendClientMessage(playerid, RedWhiteBlue[1], "hi");
new RedWhiteBlue[]={0xff000000,0xff333300,0xff666600,0xff999900,0xffcccc00,0xffffff00,0xffffff00,0xccccff00,0x9999ff00,0x6666ff00,0x3333ff00,0x0000ff00};