Got a stupid question

V

ViperAnus

Guest
Whenever I start a clan match I always type in the commands to restart the round 3 times and say "live!" and all that good stuff. I need a way to just exec a config file and have it all done. But putting it in a simple .cfg file will just do the last restart and say Live. Any help would be great.
 
Sorry, what do you mean restart 3 times?

It restarts, tehn immediatley restarts, then again, then says live? Or something else?
 
that's it. I can do it all by typing the command in no problem, but I'm getting lazy.
 
I do this for my advanced graphical settings. In your root/cstrike/cfg folder, make a .txt file and put the commands, as you would the console, in there. Then save it. Then rename it: "autoexec.cfg" and make sure the file extension is cfg, so the whole file looks like: autoexec.cfg
 
Yeah... about that.

Yeah, when you start a match or scrim you usually have a countdown system to tell the other team that the match is starting. Usually it's restaring the game 3 times, then the consol says "LIVE!!!".

I usually just imput the commands:
rcon mp_restartgame 1
rcon mp_restartgame 1
rcon mp_restartgame 1
rcon say "LIVE!!!! GL"

When you stick that in a config file and exec it, you only get the last restart and since there is a delay of 1 second, the LIVE is said before the restart. The command "wait" or "pause" is too short of a delay to stop this. I know there is a file somewhere but no one seems to know what I'm talking about.
 
add a bunch of waits or pauses after each command so it it wont do that. i had a config id execute to change a bunch of sever settings, and it only did all the commands correctly after i added a lot of waits and pauses.
 
Code:
//you can add anything you want 
//as is, it works properly 
//if it doesnt do 3 restarts, your dumb 
//you can thank me at #yidtastic 

// Aliases 

alias w "wait" 
alias w5 "wait;wait;wait;wait;wait" 
alias w50 "w5;w5;w5;w5;w5;w5;w5;w5;w5;w5" 
alias w100 "w50;w50"
alias w250 "w100;w100;w50"
alias w500 "w250;w250"
alias w1000 "w500;w500"
// 
alias lo0 "say --- LIVE ON THREE RESTARTS ---;" 
alias lo1 "mp_restartgame 1; w500;" 
alias lo2 "mp_restartgame 1; w500;" 
alias lo3 "mp_restartgame 3; w1000;w500" 
alias lo4 "say [------------];w5;lo5;" 
alias lo5 "say [E-----------];w5;lo6;" 
alias lo6 "say [VE----------];w5;lo7;" 
alias lo7 "say [IVE---------];w5;lo8;" 
alias lo8 "say [LIVE--------];w5;lo9;" 
alias lo9 "say [-LIVE-------];w5;lo10;" 
alias lo10 "say [--LIVE------];w5;lo11;" 
alias lo11 "say [---LIVE-----];w5;lo12;" 
alias lo12 "say [----LIVE----];w5;lo13;" 
alias lo13 "say [-----LIVE---];w5;lo14;" 
alias lo14 "say [------LIVE--];w5;lo15;" 
alias lo15 "say [-------LIVE-];w5;lo16;" 
alias lo16 "say [--------LIVE];w5;lo17;" 
alias lo17 "say [E--------LIV];w5;lo18;" 
alias lo18 "say [VE--------LI];w5;lo19;" 
alias lo19 "say [IVE--------L];w5;lo20;" 
alias lo20 "say [LIVE--------];w5;lo21;" 
alias lo21 "say [-LIVE-------];w5;lo22;" 
alias lo22 "say [--LIVE------];w5;lo23;" 
alias lo23 "say [---LIVE-----];w5;lo24;" 
alias lo24 "say [----LIVE----];w5;lo25;" 
alias lo25 "say [----LIVE----];w5;lo26;" 
alias lo26 "say [----LIVE----];w5;lo27;" 
alias lo27 "say [----LIVE----];w5;lo28;" 
alias lo28 "say [----LIVE----];" 
//alias cal "exec cal.cfg;" 

//make a .cfg file and name it lo3.cfg 
//to execute, just type "rcon exec lo3.cfg" 
//if you have a calconfig for scrims ie. no maxrounds 

// Execute 
lo0 
lo1 
//cal 
lo2 
lo3 
lo4

i didnt write this, so credit goes to the original author, but it works very well
 
Awesome man, that's exactly what I was looking for. Works great.
 
Link said:
Sorry, what do you mean restart 3 times?

It restarts, tehn immediatley restarts, then again, then says live? Or something else?
You've never been in a clan match have you?

They restart the round 3 times.
 
cause your response was noobish. Whenever you start a match you alert the other team that you are starting by restarting the round 3 times.
 
ViperAnus said:
cause your response was noobish. Whenever you start a match you alert the other team that you are starting by restarting the round 3 times.

You are the only noob here. Someone get Samon and his wheelchair of fury on this guy.

Sup Matt.
 
Back
Top