PDA

View Full Version : Replaying demos with FS


rustyslacker
May 31st, 2006, 06:06 PM
Hi,

I recorded a demo using a PWAD. Loading the WAD, which contains a script like this:
script 1
{
runcommand("playdemo Mydemo.lmp\n");
}

startscript(1);

causes the game to go into an infinite loop of loading. It'll load the map up to 52%, then start over. How do I replay the demo?

Rellik_jmd
May 31st, 2006, 06:39 PM
You can't have this script inside the demo you're playing, it has to be in another map so have MAP01 load the demo which is of a game on MAP02, or if the demo is of MAP01 have the script in MAP02 and start there, etc.

rustyslacker
May 31st, 2006, 08:17 PM
Aha. Thanks.