Those Cvars are clientside, sourcemod can not change them for clients. However, you could use Stripper: Source to add env_fog_controllers to your map, and assuming there isn't one already, it would take effect everywhere in the map.
http://www.bailopan.net/stripper/
You could do something as simple as this
Code:
add:
{
"classname" "env_fog_controller"
"origin" "1 1 1"
"fogcolor" "200 200 255"
"fogcolor2" "200 150 255"
"fogstart" "64"
"fogend" "1280"
}
"
That is from my memory, but there are more properties that you could add for the fog controller, but I am not entirely sure if adding the fog controller will work, but it should.
EDIT: If INS already has env_fog_controllers, then you want something like this.
Code:
modify:
{
match:
{
"classname" "env_fog_controller"
}
replace:
{
"fogstart" "120"
"fogcolor" "200 200 200"
}
}
Just as an example, you could do other properties as well. I am assuming that stripper: Source works on INS, I have no idea if it does. If it doesn't, then I have a plugin I made a while ago for editing fog, I could dig it up and find it, but Stripper is much easier if it works.
__________________