The colours probably still need a little tweaking and the obnoxious icons need to be replaced, but it's looking pretty good :lol: I especially like the smiley index :wink: :oops:

:lol:

:x

and the code buttons with the handy popup telling you how it works...
//TA: add some sparks
for( i = 0; i < 80; i++ )
{
qhandle_t spark;
if( random( ) > 0.5f )
spark = cgs.media.gibSpark1;
else
spark = cgs.media.gibSpark2;
velocity[ 0 ] = random( ) * SPARK_VEL;
velocity[ 1 ] = random( ) * SPARK_VEL;
velocity[ 2 ] = SPARK_VEL + random( ) * SPARK_VEL;
CG_LaunchSprite( origin, velocity, accel, 0.6, 4.0f, 2.0f, 255, 0, rand( ) % 360,
cg.time, 5000 + ( crandom( ) * 3000 ),
spark, qfalse, qfalse );
}
...and the private messaging seems better too.