Help with setting up commands permanently?
-
Basically im looking for a way to add these to offline zombies but where i dont have to keep adding them with every launch
sv_cheats 1
r_lodBiasRigid -1000
r_lodBiasSkinned -1000Is there a cfg i can add them too or something please ?
Or a way to add them to a batch fileI tried looking into gsc scripts but im clearly too dumb to get my head around that
-
I managed to make a gsc script after all
i only needed this in it to make the draw distance much better when i increase fov things are not texture popping anymore so it must have worked
i also found i can proper disable dof too
code looks like this in my gsc fileinit()
{
setDvar( "sv_cheats", 1 );
setDvar( "zombie_cheat", 1 );
setDvar( "r_lodBiasRigid", -1000 );
setDvar( "r_lodBiasSkinned", -1000 );
setDvar( "r_dof_enable", "0" );
} -
Hi, can you make it so we can download that GSC file for the draw distance. Need that so bad.
-
Hi, can you make it so we can download that GSC file for the draw distance. Need that so bad.
Allonzy https://www.mediafire.com/file/f8nvcf2cq40yrhk/useless.gsc/file
this took me five seconds
(its not compiled) -
Hi, can you make it so we can download that GSC file for the draw distance. Need that so bad.
Allonzy you simply open notepad, paste the text and save the file with the .gsc extension
GSC scripts are simply text files with a .gsc extension instead of .txt
Only exception is T6 where you also have to compile the file which takes 5s -
where do i add the .gsc