Script request
#1
Hey, scripters :)

Could somebody help me and make script, that will easaly change settings between two sets :
1. game set with low video and most of head-up display settings
2. screenrecording set with good video and only few head-up settings

settings for sets i will descibe...

thanks,
Vlad
Thanks given by:
#2
V-man is the just the guy for this
OY!! V-man! Vlad needs ya.
Thanks given by:
#3
There are dozens of settings you'd need to specify for this.
If you can get specific, you could make your own... ;-)
At any rate, Bukz made a script like that, meant for map editing. I don't know where he's hosting it, though... You should PM him. :D
Thanks given by:
#4
I tried making one that was nice and fancy/efficient that uses loops - to no avail, so I wound up creating two seperate .cfg files, one for regular play settings (low gfx, high fps), and one for coop editing (mapping, high gfx, low fps) settings.

Example of regular play settings .cfg:

in_coopsets = 0
fsaa 0
vsync 0
// more settings here

Example of coop settings .cfg:

in_coopsets = 1
fsaa 16
vsync 1
// more settings here

Then I bound a key to allow me to easily flip back and fourth between the two:

in_coopsets = 0
bind KEY [if $in_coopsets [echo Executing your normal settings...; run normal] [echo Executing your editing settings...; run coop]]

Then pressing the keybind will act as a toggle between your usual and other settings. HTH, if you need any more help with it feel free to ask! :)

Edit: Here is a skeleton to reference from:

// Edit the two aliases below with names that you see fit
cst_sets_name_1 = "Normal/Play"
cst_sets_name_2 = "Editing/Mapping"

bind F8 [ if $in_coopsets [ echo (c 3)Executing your (c 9) $cst_sets_name_1 (c 3)settings...; run normal_settings ] [ echo (c 3)Executing your (c 9) $cst_sets_name_2 (c 3)settings...; run custom_settings ] ]

// Then you simply need to create a "normal_settings.cfg" and a "custom_settings.cfg" and place them into the /config/ folder.
// From there just fill those two .cfgs with your settings.
Thanks given by:
#5
Don't forget to use "resetgl" for the settings that require it! :D
Thanks given by: