Posts: 1,587
Threads: 15
Joined: Jun 2005
Reputation:
0
alright.. now how i have my server set up i have different "modes" i run the server in.. so for say if my clan is gonna scrim with another i exec scrim.cfg. and i seen once how on that cfg file there was like [wait=10] or something like that.. so it would pause before doing the next cmd... and i just wanted to find out exactly what that was..
Posts: 380
Threads: 9
Joined: Jan 2005
Reputation:
0
wait is a command. just something the server executes befoe the next command but without any output. so wait happens in a fraction of a second.
you create aliases using wait to get longer wait periods
i.e.
alias wait2 "wait; wait"
alias wait4 "wait2; wait2"
alias wait8 "wait4; wait4"
etc.
United Strike Marine Corps
USMC-CO| θ (theta)
Posts: 1,587
Threads: 15
Joined: Jun 2005
Reputation:
0
alright.. i thought it was something like that.. thank you..