r1293 ACC error
Posted: Tue Nov 18, 2008 3:37 am
When I try to test the latest ACC by compiling the Zdoom Community WAD ACS file, I get this:
And here is the code in question:
The "problem" line is the last one and, as far as I can tell, it is a legitimate end to a bit of commented out code. It certainly doesn't flag up on previous versions of ACC.
Code: Select all
**** ERROR ****
Line 119 in file "F:\Doom\zdoomutils\zdoomcmp1.acs" ...
F:\Doom\zdoomutils\zdoomcmp1.acs:119: Invalid declarator.
> }*/
> ^
Code: Select all
// [GRB] Removed, useless
/*script 71 (void)
{
ambientsound ("misc/chat", 127);
print (s:"\cCThis Door can't be opened!");
}
script 72 OPEN
//sparks at the door in T667 room
{
thing_activate(3);
delay(70);
thing_activate(4);
delay(35);
thing_activate(3);
delay(95);
thing_activate(3);
delay(10);
thing_activate(4);
delay(70);
restart;
}*/