Search found 3 matches

by yasakresim
August 25th, 2007, 5:14 pm
Forum: CoD2 Mapping Help
Topic: Getcvar With Println, How to combine:???:
Replies: 8
Views: 2755

The way I do it is as follows... (This is an example for my jump/normal config switch) bind I "exec jump.cfg;^3*^2Jump^3*^7" Basically what this does is... starts up the jump.cfg and then prints " * Jump * " to the bottom left. The way it works is simple, whenever you give the g...
by yasakresim
August 24th, 2007, 4:47 pm
Forum: CoD2 Mapping Help
Topic: Getcvar With Println, How to combine:???:
Replies: 8
Views: 2755

Can't be done with Client Side mod?? I do not mention com_maxfps; it can be an another Cvar. When a Client (client=me) made a change in a Cvar (r_gamma, snd_volume etc, doesn't matter), then a line should've appeared by PrintLn function. Like "gamma set to 1.4 now..." etc. And this line sh...
by yasakresim
August 23rd, 2007, 5:29 pm
Forum: CoD2 Mapping Help
Topic: Getcvar With Println, How to combine:???:
Replies: 8
Views: 2755

Getcvar With Println, How to combine:???:

Hi all. Let's say I have a script in my config_mp.cfg that switches between Fps.. Like that: bind F2 "vstr fps1" seta fps1 "com_maxfps 76;bind F2 vstr fps2" seta fps2 "com_maxfps 125;bind F2 vstr fps3" seta fps3 "com_maxfps 333;bind F2 vstr fps1" What I want i...