else if (e->render.model->flags & EF_TRACER3)
{
trailtype = 6;
- dlightradius = max(dlightradius, 200);
- dlightcolor[0] += 1.20f;
- dlightcolor[1] += 0.50f;
- dlightcolor[2] += 1.00f;
+ if (gamemode == GAME_PRYDON)
+ {
+ dlightradius = max(dlightradius, 100);
+ dlightcolor[0] += 0.50f;
+ dlightcolor[1] += 0.50f;
+ dlightcolor[2] += 1.20f;
+ }
+ else
+ {
+ dlightradius = max(dlightradius, 200);
+ dlightcolor[0] += 1.20f;
+ dlightcolor[1] += 0.50f;
+ dlightcolor[2] += 1.00f;
+ }
}
}
// LordHavoc: customizable glow
{
if (gamemode == GAME_GOODVSBAD2)
particle(pt_static, PARTICLE_BILLBOARD, particlepalette[0 + (rand()&255)], particlepalette[0 + (rand()&255)], tex_particle, false, PBLEND_ALPHA, 6, 6, qd*255, qd*384, 9999, 0, 0, pos[0], pos[1], pos[2], lhrandom(-8, 8), lhrandom(-8, 8), lhrandom(-8, 8), 0, 0, 0, 0, 0, 0);
+ else if (gamemode == GAME_PRYDON)
+ particle(pt_static, PARTICLE_BILLBOARD, 0x202040, 0x202040, tex_particle, false, PBLEND_ADD, 6, 6, qd*128, qd*384, 9999, 0, 0, pos[0], pos[1], pos[2], lhrandom(-8, 8), lhrandom(-8, 8), lhrandom(-8, 8), 0, 0, 0, 0, 0, 0);
else
particle(pt_static, PARTICLE_BILLBOARD, 0x502030, 0x502030, tex_particle, false, PBLEND_ADD, 6, 6, qd*128, qd*384, 9999, 0, 0, pos[0], pos[1], pos[2], lhrandom(-8, 8), lhrandom(-8, 8), lhrandom(-8, 8), 0, 0, 0, 0, 0, 0);
}