Messiah 2 Posted January 10, 2005 Hey guys - did a search and got no matches, which seems a little strange as i'd expect this to come up... basically i made a custom ammo but for some reason its got green tracers - i pretty much modified another ammo class so wasnt entirely sure what was going on - does anyone know what line i'm looking for to remove/modifty to make intored tracers Share this post Link to post Share on other sites
PicVert 0 Posted January 28, 2005 inside the cfgammo part of your config.cpp put that line : <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> tracerColor[]= {0,0,0,0.005000}; Share this post Link to post Share on other sites
canukausiuka 1 Posted January 28, 2005 actually, to have it invisible, the last term needs to be zero. ie: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> tracerColor[]= {0, 0, 0, 0}; tracerColorR[]= {0, 0, 0, 0}; tracerColorR is used when rifle tracers are disabled. tracerColor is used when they are enabled. The color is just {R, G, B, A}; Share this post Link to post Share on other sites