Quote:
Originally Posted by NiQu
As if you make a say script in CS without wait's ur CS will crash, so my guess is:
The server might crash if u dont use waits.
|
Wrong.
You use waits to add a time interval between commands.
Example, if you have a series of 5 say commands without waits, it will only print one because you cannot say 5 messages that fast.
So, you add waits in between so the game allows them to work.
If you don't have waits, it won't make your server crash.
Example:
Code:
alias settings1 "alias settings settings2; cl_minmodels 1; cl_righthand 1; net_graph 3; cl_showfps 0;"
alias settings2 "alias settings settings1; cl_minmodels 0; cl_righthand 0; net_graph 0; cl_showfps 1;"
alias settings "settings1"
bind "k" "settings"
// Press k to toggle settings
__________________