Jump to content

ACS: Difference between revisions

52 bytes added ,  3 July 2022
Misc formatting
(Remove Teleport_NoStop link)
Tag: Source edit
(Misc formatting)
Tag: Source edit
Line 3: Line 3:
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]].


==Features==
== Features ==
Zandronum supports [[Databases|databases]], powered by [http://sqlite.org/ SQLite].
Zandronum supports [[Databases|databases]], powered by [http://sqlite.org/ SQLite].


==Script Types==
== Script types ==
'''<code>[[EVENT_scripts|EVENT]]</code>''' scripts are executed when specific game events occur.
'''<code>[[EVENT_scripts|EVENT]]</code>''' scripts are executed when specific game events occur.


Line 13: Line 13:
* <code>'''CLIENTSIDE'''</code> scripts client-side and can not be executed by the puke command.
* <code>'''CLIENTSIDE'''</code> scripts client-side and can not be executed by the puke command.
* <code>'''NET CLIENTSIDE'''</code> scripts are client-side and can be executed by the puke command.
* <code>'''NET CLIENTSIDE'''</code> scripts are client-side and can be executed by the puke command.
<br>
In this example, when someone picks up the enemy item it will start this script on the Client side:
Script 1 PICKUP CLIENTSIDE
{
    {{zdoomwiki|Print}}(s:"Someone got the flag!");
}


In this example, when someone picks up the enemy item it will start this script on the client side:
<syntaxhighlight lang="c" line="1">
Script 1 PICKUP CLIENTSIDE
{
  {{zdoomwiki|Print}}(s:"Someone got the flag!");
}
</syntaxhighlight>


It is worth reading [[Clientside Scripting]] if you intend on using CLIENTSIDE scripts.
It is worth reading [[Clientside Scripting]] if you intend on using CLIENTSIDE scripts.
Line 86: Line 87:
* <code>[[Team_Score]]</code>
* <code>[[Team_Score]]</code>


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