PlayerArmorPoints
(Redirected from PlayerArmorpoints)
![]() |
Warning: This feature is Zandronum specific and may not supported by ZDoom and its other child ports! Documentation may not be accurate, see ACS Functions. |
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
1 Script 1 (void)
2 {
3 Print(s: "You have ", d: PlayerArmorpoints(), s: " armor!");
4 }