Ive added custom colorCorrections and particle effects

Hey piff thanks for the reply, I figured out how to make it work... but still cant get the corners of the screen to darken like in this video
skip to about 10:00 to get a good idea of the effect.

I figured out how to make the color, wind and ash effect work using this method...
Replace this part...
Code:
"colorCorrections" ppEffectAdjust [2, 30, 0, [0.0, 0.0, 0.0, 0.0], [0.8*2, 0.5*2, 0.0, 0.7], [0.9, 0.9, 0.9, 0.0]];
"colorCorrections" ppEffectCommit 0;
//"colorCorrections" ppEffectAdjust [1, 1, 0, [0.0, 0.0, 0.0, 0.0], [0.8*2, 0.5*2, 0.0, 0.7], [0.9, 0.9, 0.9, 0.0]];
"colorCorrections" ppEffectAdjust [1, 0.8, -0.001, [0.0, 0.0, 0.0, 0.0], [0.8*2, 0.5*2, 0.0, 0.7], [0.9, 0.9, 0.9, 0.0]];
"colorCorrections" ppEffectCommit 3;
"colorCorrections" ppEffectEnable true;
To look like this...
Code:
_hndl = ppEffectCreate ["colorCorrections", 1501];
_hndl ppEffectAdjust [2, 30, 0, [0.0, 0.0, 0.0, 0.0], [0.8*2, 0.5*2, 0.0, 0.7], [0.9, 0.9, 0.9, 0.0]];
_hndl ppEffectCommit 0;
_hndl ppEffectAdjust [1, 0.8, -0.001, [0.0, 0.0, 0.0, 0.0], [0.8*2, 0.5*2, 0.0, 0.7], [0.9, 0.9, 0.9, 0.0]];
_hndl ppEffectCommit 3;
_hndl ppEffectEnable true;
it kind of looks like the wasteland color correction that I have now... where are the particles?
 
it kind of looks like the wasteland color correction that I have now... where are the particles?
Sorry taken so long to respond. The particles might not be actually working, all that I might have done is to get the colour correction effects, wind sounds and dust clouds to work...

Unless the ash particles are extrememly small or not as obvious as the snow effect from Audio Rejectz
 
Back
Top