En las CVAR del juego aparecen 4 niveles de calidad gráfica sin contar las de consola:
CVARs[1]
sys_spec_ObjectDetail=1
sys_spec_Shading=1
sys_spec_VolumetricEffects=1
sys_spec_Shadows=1
sys_spec_Texture=1
sys_spec_Physics=1
sys_spec_PostProcessing=1
sys_spec_Particles=1
sys_spec_Sound=1
sys_spec_Water=1
sys_spec_GameEffects=1
[2]
sys_spec_ObjectDetail=2
sys_spec_Shading=2
sys_spec_VolumetricEffects=2
sys_spec_Shadows=2
sys_spec_Texture=2
sys_spec_Physics=2
sys_spec_PostProcessing=2
sys_spec_Particles=2
sys_spec_Sound=2
sys_spec_Water=2
sys_spec_GameEffects=2
[3]
sys_spec_ObjectDetail=3
sys_spec_Shading=3
sys_spec_VolumetricEffects=3
sys_spec_Shadows=3
sys_spec_Texture=3
sys_spec_Physics=3
sys_spec_PostProcessing=3
sys_spec_Particles=3
sys_spec_Sound=3
sys_spec_Water=3
sys_spec_GameEffects=3
[4]
sys_spec_ObjectDetail=4
sys_spec_Shading=4
sys_spec_VolumetricEffects=4
sys_spec_Shadows=4
sys_spec_Texture=4
sys_spec_Physics=4
sys_spec_PostProcessing=4
sys_spec_Particles=4
sys_spec_Sound=4
sys_spec_Water=4
sys_spec_GameEffects=4
Asi que cada grupo es un nivel, 1 es low, 2 medium, 3 high y 4 very high, pues bien, cada línea corresponde a una CFG, como por ejemplo sys_spec_water (que seria Very High) y si cargamos sys_spec 4 tendria que cargarse el nivel 4 de todas las CFGs, pero si vamos a una CFG encontramos esto:
Sys_spec_water.cfg[default]
; default of this CVarGroup
= 3
r_WaterReflections=1
r_WaterUpdateFactor=0.05
e_WaterTesselationAmount=10
e_WaterTesselationSwathWidth=10
r_WaterUpdateDistance=0.2
r_WaterReflectionsQuality=4
e_WaterOceanFFT=1
q_ShaderWater=2
r_WaterReflectionsMinVisiblePixelsUpdate = 0.05
[1]
r_WaterUpdateFactor=0.1
e_WaterTesselationAmount=6
r_WaterUpdateDistance=1
r_WaterReflectionsQuality=1
e_WaterOceanFFT=0
q_ShaderWater=1
r_WaterReflectionsMinVisiblePixelsUpdate = 0.05
[2]
e_WaterTesselationAmount=7
r_WaterUpdateFactor=0.05
r_WaterUpdateDistance=1
r_WaterReflectionsQuality=2
e_WaterOceanFFT=0
q_ShaderWater=2
r_WaterReflectionsMinVisiblePixelsUpdate = 0.05
Solo hay hasta 3 niveles en la CFG, asi que no hay very high, fin.