Configuration Editing Question
I was woundering about 1 thing.. whit the if => else commands like
if ( g_gametype != 1 )
Is it possible to do it whit maps or timelimit, fraglimit ?
For example... if ( timelimit == 5 ) {
''xxx''
} else {
''xxx''
}
}
Thank you all for you upcoming answers
___
you can try this one, but first look on urs server.cfg if u dont have putted fraglimit and timelimit, if yes remove it from there and make it on weapon.cfg
example :
[code:1]
if ( g_gametype == 1 ) {
Timelimit: 6;
Fraglimit: 0;
} else {
Timelimit: 25;
Fraglimit: 15;
}[/code:1]
more here -> http://www.excessiveplus.net/docs/config.html
hope i helped
awww...how nice to see ppl helping ppl
nice move guys
I wonder why map name didn't work... to lazy to try this out. Mapname is a cvar also and should work... you might have to put the mapname is quotes or somethin'...
Thanks, it worked out perfectly