http://www.wh00s.net/jump0r.zip (!! UPDATED !!)
those are not hard, cuz I could make them
anyway I made this code to:
Code: Select all
set demovalue 1
bind c "demo1"
alias demo1 "record demo_$demovalue .dm2;bind c demo2"
alias demo2 "stop;inc demovalue 1;bind c demo1"
bind v "set demovalue 1"
first it sets the variable demovalue to 1 (that should be at top)
and then it binds the button c to the alias demo1
and the alias demo1 records a demo with the name "demo_1.dm2" at this point, cuz it uses the variable which is set to 1, and then it binds button c to alias demo2
alias demo2 stops the demo and increases the variable demovalue with 1 step (if the variable is 3, it increases to 4), and binds button c to alias demo1 again, now the variable demovalue has a value of 2, cuz it has been increased...and it will go on...so u wont overwrite any demos hehe : p
and why its a space in "demo_$demovalue .dm2" is becuz if it wouldnt be any space, it would name the file: demo_.dm2 for some reason, tried it :p with the space it will save it as: demo_1.dm2 ..so there wont be any space anyway :p
and if u re-execute the cfg it will set the demovalue to 1, and it will go over again 1,2,3,4...
gl
AprQ2 is needed cuz it got the command "inc" :p I dont know about nocheat or anything...but aprq2 latest worx
EDIT: press button v and it will reset the variable demovalue, so it starts over again with demo_1.dm2