Author Topic: How do i recolor a weapon, or a projectile of a weapon?  (Read 539 times)

I want to change the color of the TF2 medigun into a blue beam, then a red one, do i change something in the server?
colors[0]     = "1 0 0 1";
   colors[1]     = "1 0 0 0";
      colors[2]     = "1 0 0 0";
      colors[3]     = "1 0 0 0";
do i change anything on this?

colors[0]     = "1 0 0 1";
   colors[1]     = "1 0 0 0";
      colors[2]     = "1 0 0 0";
      colors[3]     = "1 0 0 0";
do i change anything on this?
yeah, maybe you should:
Code: [Select]
colors[0]     = "255 0 0 255";
colors[1]     = "255 0 0 0";
    colors[2]     = "255 0 0 0";
    colors[3]     = "255 0 0 0";

255 is the max for red, green or blue. if you were just using one it would keep it black.

yeah, maybe you should:
Code: [Select]
colors[0]     = "255 0 0 255";
colors[1]     = "255 0 0 0";
    colors[2]     = "255 0 0 0";
    colors[3]     = "255 0 0 0";

255 is the max for red, green or blue. if you were just using one it would keep it black.
so would 85 be the number for blue?