diff --git a/Build/Scripting/ZDoom_ACS.cfg b/Build/Scripting/ZDoom_ACS.cfg index 3f8e603d7934e87474f835709fc1ec0df6237a2c..011688f3e36f20017656bff44f682510037bb88f 100755 --- a/Build/Scripting/ZDoom_ACS.cfg +++ b/Build/Scripting/ZDoom_ACS.cfg @@ -266,6 +266,8 @@ keywords Line_SetPortalTarget = "Line_SetPortalTarget(sourcelineid, targetlineid)"; Line_SetTextureOffset = "Line_SetTextureOffset(lineid, x, y, side, flags)"; Line_SetTextureScale = "Line_SetTextureScale(lineid, x, y, side, flags)"; + Line_SetAutomapFlags = "Line_SetAutomapFlags(lineid, setflags, clearflags)"; + Line_SetAutomapStyle = "Line_SetAutomapStyle(lineid, style)"; LineSide = "int LineSide()"; LocalAmbientSound = "void LocalAmbientSound(str sound, int volume)"; LocalSetMusic = "void LocalSetMusic(str song[, int order[, int unused]])"; @@ -553,6 +555,24 @@ constants ACTOR_PLAYER; ACTOR_VOODOODOLL; ACTOR_WORLD; + AMLF_Secret; + AMLF_DontDraw; + AMLF_Mapped; + AMLF_Revealed; + AMLS_Default; + AMLS_OneSided; + AMLS_TwoSided; + AMLS_FloorDiff; + AMLS_CeilingDiff; + AMLS_ExtraFloor; + AMLS_Special; + AMLS_Secret; + AMLS_NotSeen; + AMLS_Locked; + AMLS_IntraTeleport; + AMLS_InterTeleport; + AMLS_UnexploredSecret; + AMLS_Portal; APROP_Accuracy; APROP_ActiveSound; APROP_Alpha;