PlayerArmorPoints: Difference between revisions
DrinkyBird (talk | contribs) (Created page with "{{Template:ACSWarning}} int '''PlayerArmorpoints''' (void) ==Usage== This function will return the amount of armor points the activator of the script has. If the activator i...") |
DrinkyBird (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
==Usage== | ==Usage== | ||
This function will return the amount of armor points the activator of the script has. If the activator is | This function will return the amount of armor points the activator of the script has. If the activator is the server it will return zero. | ||
==Examples== | ==Examples== |
Revision as of 16:24, 21 August 2016
This article documents a Zandronum-specific ACS feature which may not be supported by ZDoom and its other child ports. |
int PlayerArmorpoints (void)
Usage
This function will return the amount of armor points the activator of the script has. If the activator is the server it will return zero.
Examples
Script 1 (void)
{
Print(s: "You have ", d: PlayerArmorpoints(), s: " armor!");
}