GetPlayerScore

From Zandronum Wiki
Revision as of 13:58, 27 September 2021 by AKMDM (talk | contribs) (Added page for GetPlayerScore.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
This article documents a Zandronum-specific ACS feature which may not be supported by ZDoom and its other child ports.

int GetPlayerScore (int player, int type) (development version 3.1-alpha and above only)

Usage

Returns the score of the player indicated by the player parameter. The type can be one of the following:

  • SCORE_FRAGS = 0

How many frags this player has.

  • SCORE_POINTS = 1

How many points this player has.

  • SCORE_WINS = 2

How many wins this player has.

  • SCORE_DEATHS = 3

How many times this player died.

  • SCORE_KILLS = 4

The number of monsters this player has killed.

  • SCORE_ITEMS = 5

The number of items this player has picked up.

  • SCORE_SECRETS = 6

The number of secrets this player has found.