ACSUtils Wiki

An ACS library for ZDoom-based ports

User Tools

Site Tools


using_acsutils

Using ACSUtils

Upgrading the compiler

You must upgrade your ACS compiler to use ACSUtils because the official ACC 1.55 release can't compile files with more than 256 functions.

Upgrade to one of the following compilers:

Adding ACSUtils to your project

  1. Add acsutils.acs to your project.
  2. Include acsutils.acs after zcommon.acs:
#include "zcommon.acs"
#include "acsutils.acs"

Things to note

If your project has functions (or variables, if you are using ACC) with the same names as ACSUtils functions, it won't compile. Rename the functions in your project to fix it. ACSUtils functions are named to avoid some of the most annoying conflicts, but it still needs several renames in some big projects.

Optional enhancements

  1. Copy decorate/changeflag.txt to your decorate and #include it to make ChangeFlag and ChangeActorFlag work.
  2. Copy cvarinfo.acsutils to your project root to allow the server to hide ACSUtils errors using the acsutils_noerrors cvar (it will automatically load and not conflict with your mod's CVARINFO because ZDoom ignores the extension).

BCC enhancements

If you are using BCC, try BCSUtils – a BCC-enhanced version of ACSUtils with the same functions!

using_acsutils.txt · Last modified: 2017/07/14 20:50 by korshun