Hmm i record about every game i play because i use a little batch file that automaticly starts to record (with current data/time in the filename) but only very few of them are 1on1.. mostly ffa, some tdm..
Just in case you like autorecord, place those files in the main Nexuiz directory.. They will create demos in Nexuiz/data/demos and the files are named like YOURNAME-2006-02-01-10-11-58.dem
This way it will record ONE demo if you connect to a server or start a game on your own. You will have to end Nexuiz and start the script again to create an other auto-record!
autorec.bat (I'm not sure this will work on every system.. it does work for me. But his depends HEAVILY on the local settings in windows! SO IT MIGHT NOT WORK WITHOUT CHANGES FOR YOU!!! This is just ugly stuff on windows.. the linux script is much simpler):
- Code: Select all
@echo off
setlocal
set ddate=%date%
set dtime=%time%
for /f usebackq %%t in (`time /t`) do set dtime2=%%t
set dyear=%ddate:~6,4%
set dmonth=%ddate:~3,2%
set dday=%ddate:~0,2%
set dhour=%dtime2:~0,2%
set dminute=%dtime:~3,2%
set dsecond=%dtime:~6,2%
set demo=YOURNAME-%dyear%-%dmonth%-%dday%-%dhour%-%dminute%-%dsecond%
set executable=nexuiz
set executable=nexuiz-sdl
%~d0
cd "%~p0"
.\%executable% %* +record "demos/%demo%"
autorec.sh- Code: Select all
#!/bin/sh
demo="YOURNAME-`date +%Y-%m-%d-%H-%M-%S`"
cd "`dirname \"${0}\"`"
exec ./nexuiz-linux.sh "${@}" +record "demos/${demo}"