Code: Select all
Script error, "zscript/enemies/newenemy.zs" line 4:
Unexpected ':'
Expecting ';' or ','
Code: Select all
private int newEnemyFlags;
flagDef CanDodgeRoll: newEnemyFlags, 0;
Moderator: GZDoom Developers
Code: Select all
Script error, "zscript/enemies/newenemy.zs" line 4:
Unexpected ':'
Expecting ';' or ','
Code: Select all
private int newEnemyFlags;
flagDef CanDodgeRoll: newEnemyFlags, 0;
Code: Select all
version "3.7"
Now the error has changed to something different. It's changed toBlue Shadow wrote: ↑Fri Jul 05, 2024 2:20 am The earliest GZDoom version to support the custom flags feature is 3.7.0, so put this at the top of your ZSCRIPT file:
With that line, your mod can only be run with GZDoom 3.7.0 and higher, where the feature is supported.Code: Select all
version "3.7"
Code: Select all
zscript/enemies/newenemy.zs, line 46: Unknown flag 'CanDodgeRoll'
Code: Select all
+CanDodgeRoll