View Single Post
Old 09-20-2007, 08:29 PM   #5
teatime
 
Join Date: Jul 2007
Posts Rated Helpful 0 Times
Quote:
Originally Posted by Kanadwen
So the full script would look like this?:
pretty much correct. here i'll just paste what i put in my autoexec which works fine... once it gets to 9 demos and you start a new one it will overwrite xxx001 if you don't rename them after playing.

--------
alias recdemo1 "record xxx001; alias stopdemo stopdemo2"
alias recdemo2 "record xxx002; alias stopdemo stopdemo3"
alias recdemo3 "record xxx003; alias stopdemo stopdemo4"
alias recdemo4 "record xxx004; alias stopdemo stopdemo5"
alias recdemo5 "record xxx005; alias stopdemo stopdemo6"
alias recdemo6 "record xxx006; alias stopdemo stopdemo7"
alias recdemo7 "record xxx007; alias stopdemo stopdemo8"
alias recdemo8 "record xxx008; alias stopdemo stopdemo9"
alias recdemo9 "record xxx009; alias stopdemo stopdemo1"
alias recdemo "recdemo1"

alias stopdemo1 "stop; alias recdemo recdemo1"
alias stopdemo2 "stop; alias recdemo recdemo2"
alias stopdemo3 "stop; alias recdemo recdemo3"
alias stopdemo4 "stop; alias recdemo recdemo4"
alias stopdemo5 "stop; alias recdemo recdemo5"
alias stopdemo6 "stop; alias recdemo recdemo6"
alias stopdemo7 "stop; alias recdemo recdemo7"
alias stopdemo8 "stop; alias recdemo recdemo8"
alias stopdemo9 "stop; alias recdemo recdemo9"
alias stopdemo "stopdemo1"

bind "n" "recdemo"
bind "m" "stopdemo"

-----------

then if you want to add more "slots" to record w/o renaming just add more following the pattern.
teatime is offline   Reply With Quote