SCRIPT: gocheck/record demo - solved :)
bind "F11" "say /gocheck;wait;stop;wait;record demo"
I have that kind of bind atm, but I would like one that does it like to demo1, demo2, demo3, demo4, and so on, until demo10 or so, then it would start overwriting demo1, demo2 and so on.
It would be very useful when recording lj, so it wouldn't matter if I pressed accidentally the bind right after I have done a lj.
[ Edited ]
I suppose thats not possible with a simple bind.
You need a combination between script and bind :)
alias x1 "alias x x2;record demo1"
alias x2 "alias x x2;record demo2"
alias x3 "alias x x4;record demo3"
alias x4 "alias x x5;record demo4"
alias x5 "alias x x6;record demo5"
alias x6 "alias x x7;record demo6"
alias x7 "alias x x8;record demo7"
alias x8 "alias x x9;record demo8"
alias x9 "alias x x1;record demo9"
alias x "x1"
bind F11 "say /gocheck;wait;x"
I think it isn't a cheat... =P
[ Edited 07/31/07 - 05:40:07 ]
Ty numb, though I did edit this:
bind F11 "say /gocheck;wait;stop;wait;x"
So it stops the previous recording before starting a new one.
EDIT:
It doesn't work quite so well, 1st time I press f11 it starts to record to demo1.dem, 2nd time demo2.dem, 3rd time demo2.dem, 4th time demo2.dem and so on.
EDIT2:
Now it started magically working properly. :)
[ Edited 07/31/07 - 15:53:33 ]
alias x2 "alias x x2;record demo2"
aliasing on itself is t3h mistake
should be x3
[ Edited 09/11/07 - 19:32:23 ]
bind "v" "/gocheck;stop;record lj" - the bind i use :O
Well, stop & record must have a 1 ms wait, so i use:
bind "v" "stop;wait;/gc;record demo1"
i have like that:
bind x "stop;sv_restart 1;record lala.dem"
adidasd on sv_restart timer crashes. And when you go LJ, you dont need a restart. Or am i wrong?
Oh , i tought for map wr
bind f2 "stop ; gc ; record demoname"
-_-
i wrote this for myself once:
//demo script
alias dems dems1
alias dems1 "stop; wa5; record demo_script_1; alias dems dems2"
alias dems2 "stop; wa5; record demo_script_2; alias dems dems3"
alias dems3 "stop; wa5; record demo_script_3; alias dems dems4"
alias dems4 "stop; wa5; record demo_script_4; alias dems dems1"similar to numb's though :]
Originally posted by IchWillbind f2 "stop ; gc ; record demoname"
-_-
bind f2 "stop ; say /gocheck ; record trick1"
bind f3 "stop ; sv_Restart 1 ; record kzrun1"
I use , dunno bout what you asked . I suck in scriptin :P
bumb alrdy gave the answer..
Please log in to post replies.