player
Jump to navigation
Jump to search
player is a point entity available in all
Source games. The player itself or a bot. NPCs are not players. This entity still exists even if the player is dead.
UTIL_GetLocalPlayer().If the game has round restart mechanics this entity may not behave as expected:
|
Limitations/Bugs
Keyvalues
- Health (health) <integer>
- The player's health.
- Maximum Health (max_health) <integer>
- The value of "health" cannot exceed this.
Inputs
- SetHealth <integer>
- Sets the player's health. Values clamped between 0 and
max_health.
- HandleMapEvent <string>
- Tells the game to perform a function, such as unlock an achievement. Hardcoded for specific map names.
- SetHUDVisibility <boolean> (not in



) - Hides or displays the HUD.
Note:The menu can still be accessed, and some HUD elements such as kill-icons may still be visible.
Bug:In
and
, using this input with a parameter override of 0 will disable any weapon-switching of the target. Todo: Test in other games.[todo tested in ?]
- SetFogController <string> (not in



) - Sets the env_fog_controller to use.
- SpeakResponseConcept <string> (not in



) - Speak the specified response concept immediately.
- IgnoreFallDamage <float> (only in
) - Prevent the player from taking fall damage for [n] seconds, but reset back to taking fall damage after the first impact (so players will be hurt if they bounce off what they hit).
- IgnoreFallDamageWithoutReset <float> (only in
and
) - Absolutely prevent the player from taking fall damage for [n] seconds.
- OnSquadMemberKilled (only in
) - Notification of a player's NPC ally in the players squad being killed.
- ForceDropPhysObjects (only in
) - Force the player to drop any physics objects they are carrying.
- OnRescueZoneTouch (only in

) - Fired when a hostage is rescued. This input is also available in the code for
and
.
- PerformForcedWeaponDeploy <string> (only in
) !FGD - Forces the player to use specified weapon with pickup animation.
Note:Pickup animation doesn't always work, this somehow depends on player's ammo and other weapons.