Help with setting up commands permanently?
-
john30011887wrote on Jul 31, 2022, 11:48 PM last edited by john30011887 Aug 1, 2022, 3:35 AM
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
-
john30011887wrote on Aug 1, 2022, 1:33 AM last edited by john30011887 Aug 1, 2022, 4:40 AM
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.
-
hindercanrunreplied to Allonzy on Nov 12, 2022, 3:08 PM last edited by hindercanrun Nov 12, 2022, 7:23 PM
Allonzy https://www.mediafire.com/file/f8nvcf2cq40yrhk/useless.gsc/file
this took me five seconds
(its not compiled) -
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