Site Redesign – What do YOU prefer?
Click on the image for Full View
Please Comment your choice
(any additional recommendations is welcome)
1
2
3
4
Keep Current one
Finding the right Sensitivity
Some people don’t seem to pay attention to the ingame mouse sensitivity.
That means you will just have to correct your mouse gestures and also have lots of luck.
Personally the mouse sensitivity is the second most important thing in gaming, just a bit more important is your reaction speed.
High vs Low sensitivity
There are a lot of [...]
Double Keyboard Script
This will create a new virtual keyboard for you. All you’ll have to do is hold another button and press the key you desire.
So for example you hold the CTRL button and press T as usual, but the T will result in another function than usual.
bind CTRL “+vstr ctrl1 ctrl2″
set ctrl1 “exec ctrldown.cfg” //make a [...]
Volume Toggle Script
This will let you toggle through the loudness of your sounds with the up and down keys.
This is also a random but long vstr toggle.
bind “UPARROW” “vstr volup”
bind “DOWNARROW” “vstr voldown”
set volup vstr vol05
set voldown vstr vol05
set vol00 “set s_volume 0.0;set voldown vstr vol00; set volup vstr vol01; echo Volume ^2O^7==========”
set vol01 “set s_volume 0.1;set voldown [...]
The DemoToggle Script
This script fixes the “bug” the developers made when creating ET (and rtcw) which will have you press F12 to start recording a demo but doesn’t stop when pressing that button again…
bind “F12″ “vstr demotoggle”
set demotoggle “vstr demostart”
set demostop “set demotoggle vstr demostart; stoprecord”
set demostart “set demotoggle vstr demostop; autorecord”
This is just a random toggle [...]
Set and Seta
Some people will not know what set and seta mean and neither what the difference is between those.
.
Set and seta will actually set (like the word says) a setting (including vstrs) into the database of ET until you stop playing.
.
The difference between seta and set is:
seta writes the setting into your autoexec (standard config) and [...]
A Settings Cycle
You can also cycle through settings like your fov (field of view), sensitivity, volume and so on.
There is no need to use a vstr command for this, it would be way to long and inaccurate.
If we used the vstr command, we would need to write every amount of sensitivity for example. So each line [...]
Bind in a Bind
As a newbie I didn’t know you can add binds inside binds. In this case I mean there is the function to let you bind a key only when you launch it by pressing another key.
For example, i want to be able to quit ET only if I pressed esc and then press delete.
bind ESC [...]
A vstr Cycle
This is a script type I had been searching for a long time when I was a newbie, it’s used alot in configs, so pay attention!
So imagine we want to create a cycle that will change our name every time we press “H”.
(BEWARE: PunkBuster kicks for too many namechanges!)
We will have to create the [...]