Weird Crash.
Posted: Wed Feb 16, 2011 23:47
Hi I have a weird crash and I think its my new ACS score system for a wad.
It uses loadacs.
I have the right function args when using Exit_Normal.
Example of exit script:
Anything that might be causing this?
I'll post my crash report as well.
It uses loadacs.
I have the right function args when using Exit_Normal.
Example of exit script:
Code: Select all
#Library "Score"
#Include "Zcommon.acs"
Int Score;
Script 799 Unloading
{
While(Score <= 0)
{
Ambientsound("plats/pt1_stop",275);
Delay(35);
Exit_Normal(0);
Terminate;
}
Giveinventory("Scorepoint",1);
Score = Score - 1;
Ambientsound("plats/pt1_mid",275);
Delay(1);
Restart;
}
I'll post my crash report as well.