ItsMods

Full Version: [help Please]Black sky Dvar or script
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Huh can someone please give me the the dvar or script that changw the sky color to black? I realy need it to make a multiplayer infections mod
Change the textures? Make them completely black or something, I once had some filmtweaks that changed the whole game to be red and black but I don't have the dvar values anymore.

the textures are called:

skybox_[mapname]
or
[mapname]_skybox

I think :p
Code:
    self setClientDvar( "r_lightTweakSunColor", "0 0 0" );
    self setClientDvar( "r_lighttweaksunlight", "-10" );
    self setClientDvar( "r_brightness", -0.5 );
    self setClientDvar( "r_fog", "1" );
    self setClientDvars( "r_sun", 0, "r_lighttweaksunlight", "0.3 0.3 0.3" );    
    self setClientDvar("r_lightTweakSunColor", "0 0 0");
    self setClientDvar("r_lighttweaksunlight", "0.991101 0.947308 0.760525" );
    self setClientDvar("r_heroLightScale", "1 1 1");
        self setClientDvar("r_skyColorTemp", "6500");

and some of thoose fog settings makes your "fog" epicness
First:
setExpFog(100, 70, 0.097, 0.097, 0.097, 0);
Second:
setExpFog(110, 310, .0, .0, .0, 0);
Third:
setExpFog(110, 310, .0, .0, .0, 0);
Fouth
setExpFog(250,100,0,0,0,1);
Fith
setExpFog(500,250,0,0,0,1);

That makes your game enviroment really epic, i used that in my mod
Thx alot i been searching this forever