A GivePlayerMedal

From Zandronum Wiki
Revision as of 01:37, 27 May 2024 by AKMDM (talk | contribs) (Created a page for the A_GivePlayerMedal DECORATE function.)
(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.
This article documents a DECORATE function which is only available in development builds of Zandronum 3.2 and newer.

bool A_GivePlayerMedal (str medal, bool silent [, pointer receiver]) (development version 3.2-alpha and above only)

Usage

A DECORATE version of GivePlayerMedal, used to award a player with a medal.

Parameters

  • medal: The name of the medal to be awarded.
  • silent: If true, then when the player receives the medal, it won't appear on the screen or above their head, and no sounds will be played.
  • receiver: The actor that receives the medal. This must point to a valid player. By default, this is AAPTR_DEFAULT, which corresponds to the caller of the function.

Return value

Returns true on success or false on failure.

Examples

This article lists no examples, please add one.