Demo Recording Commands


(RocketGrrl [SWE]) #1

I have found out that i can start recording a Demo by pressing F12, that is no problem. How can i stop recording without leaving the server, is there a command like /stopdemo?. Are there any other useful commands while recording demos?


(Eddie1989) #2

I only know /stoprecord hehe


(Majin) #3

There are three commands, /record NAME, /autorecord, and /stoprecord.
/autorecord is bound to F12 by default.

If you ever want to make a demo that you can easily find later, go into the consol and use /record NAME (where NAME is whatever you want).

This script will make the F12 key toggle demo recording on/off.

set demo0 “autorecord; set demotog vstr demo1”
set demo1 “stoprecord; set demotog vstr demo0”
set demotog “vstr demo0”
bind F12 “vstr demotog”

(for scripting info - http://www.rtcwonline.com/dummies/scripts.htm)