ACS: Difference between revisions

From Zandronum Wiki
(Added SetGameplaySetting to the list.)
Tag: Source edit
(It's no longer incomplete I think)
Tag: Source edit
Line 1: Line 1:
This is an '''incomplete''' list of Zandronum-'''only''' ACS functions and extensions. See {{zdw2|Built-in_ACS_functions|here}} for a list of ZDoom-supported ACS functions.  
This is a list of Zandronum-'''only''' ACS functions and extensions. See {{zdw2|Built-in_ACS_functions|here}} for a list of ZDoom-supported ACS functions.  


For a list of all the ACS functions supported by Zandronum, [[List of ACS functions in Zandronum|click here]].
For a list of all the ACS functions supported by Zandronum, [[List of ACS functions in Zandronum|click here]].

Revision as of 15:33, 15 March 2023

This is a list of Zandronum-only ACS functions and extensions. See here for a list of ZDoom-supported ACS functions.

For a list of all the ACS functions supported by Zandronum, click here.

Features

Zandronum supports databases, powered by SQLite.

Script types

EVENT scripts are executed when specific game events occur.

There are additional script types that can be appended to regular script types:

  • NET scripts are server-side and can be executed by clients using the puke command.
  • CLIENTSIDE scripts client-side and can not be executed by the puke command.
  • NET CLIENTSIDE scripts are client-side and can be executed by the puke command.

It is worth reading Clientside Scripting if you intend on using CLIENTSIDE scripts.

ACS Functions

Deprecated

These functions are deprecated. They still work, but will be removed eventually. It is recommended you use more up to date functions.

Related Articles