Player: Difference between revisions
Jump to navigation
Jump to search
Note:Keyvalues, inputs, outputs and Dimensions vary depending on game and engine version.
Tip:In singleplayer, a pointer to the player can be acquired by using
Warning:Removing this entity will likely crash the game.
Important:This is a preserved entity in 








.
If the game has round restart mechanics this entity may not behave as expected:
Important:This entity is not intended to be placed in a map manually. Doing so will result in an instant fatal error on map load!
Note:Keyvalues can be changed on a player with AddOutput.
(Added warning about the game crashing) |
No edit summary |
||
| Line 17: | Line 17: | ||
{{KV|Health|intn=health|integer|The player's health.}} | {{KV|Health|intn=health|integer|The player's health.}} | ||
{{KV|Maximum Health|intn=max_health|integer|The value of "health" cannot exceed this.}} | {{KV|Maximum Health|intn=max_health|integer|The value of "health" cannot exceed this.}} | ||
{{KV|Base Velocity|intn=BaseVelocity|Vector|Adds to the velocity of the player. <br>Format:<code> <x> <y> <z> </code> | {{KV|Base Velocity|intn=BaseVelocity|Vector|Adds to the velocity of the player. <br>Format:<code> <x> <y> <z> </code>}} | ||
:{{todo|Test for games other than {{half-Life 2}}{{portal}}{{portal2}}{{tf2}}}} | :{{todo|Test for games other than {{half-Life 2}}{{portal}}{{portal2}}{{tf2}}}} | ||
| Line 23: | Line 23: | ||
{{IO|SetHealth|param=integer|Sets the player's health. Values clamped between 0 and <code>max_health</code>.}} | {{IO|SetHealth|param=integer|Sets the player's health. Values clamped between 0 and <code>max_health</code>.}} | ||
{{IO|HandleMapEvent|param=string|Tells the game to perform a function, such as unlock an achievement. Hardcoded for specific map names.}} | {{IO|HandleMapEvent|param=string|Tells the game to perform a function, such as unlock an achievement. Hardcoded for specific map names.}} | ||
{{IO|SetHUDVisibility|param=boolean|Hides or displays the HUD.|not=Half-Life 2 | {{IO|SetHUDVisibility|param=boolean|Hides or displays the HUD.|not={{Half-Life 2 series|4}}}} | ||
:{{note|The menu can still be accessed, and some HUD elements such as kill-icons may still be visible.}} | :{{note|The menu can still be accessed, and some HUD elements such as kill-icons may still be visible.}} | ||
:{{bug| | :{{bug|tested={{tf2}}{{csgo}}{{l4d2}}|Using this input with a parameter override of 0 will disable any weapon-switching of the target. {{todo|Test in other games.}}}} | ||
{{IO|SetFogController|param=string|Sets the {{ent|env_fog_controller}} to use.|not=Half-Life 2 | {{IO|SetFogController|param=string|Sets the {{ent|env_fog_controller}} to use.|not={{Half-Life 2 series|4}}}} | ||
{{IO|PerformForcedWeaponDeploy|param=string|only={{bms}} | {{IO|PerformForcedWeaponDeploy|param=string|only={{bms}}|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.}} | :{{note|Pickup animation doesn't always work, this somehow depends on player's ammo and other weapons.}} | ||
}} | }} | ||
Revision as of 09:32, 7 September 2024
| ... Game Specific ... |
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:
|
Keyvalues
- Health (health) <integer>
- The player's health.
- Maximum Health (max_health) <integer>
- The value of "health" cannot exceed this.
- Base Velocity (BaseVelocity) <vector>
- Adds to the velocity of the player.
Format:<x> <y> <z>
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
Half-Life 2 series) - Hides or displays the HUD.
Note:The menu can still be accessed, and some HUD elements such as kill-icons may still be visible.
- SetFogController <string> (not in
Half-Life 2 series) - Sets the env_fog_controller to use.
- PerformForcedWeaponDeploy <string> (only in
) - 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.