Player (Left 4 Dead series): Difference between revisions
Jump to navigation
Jump to search
Warning: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:These keyvalues should be changed on a player with AddOutput.
(-L4D2 CTerrorPlayer player entity) |
mNo edit summary |
||
Line 14: | Line 14: | ||
{{IO|SetHUDVisibility|param=boolean|Hides or displays the HUD.}} | {{IO|SetHUDVisibility|param=boolean|Hides or displays the HUD.}} | ||
{{IO|SetFogController|param=string|Sets the {{ent|env_fog_controller}} to use.}} | {{IO|SetFogController|param=string|Sets the {{ent|env_fog_controller}} to use.}} | ||
{{IO|SpeakResponseConcept|param=string|Speak the specified [[Response System|response concept]] immediately. | {{IO|SpeakResponseConcept|param=string|Speak the specified [[Response System|response concept]] immediately.}} | ||
{{IO|IgnoreFallDamage|param=float|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).}} | {{IO|IgnoreFallDamage|param=float|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).}} | ||
{{IO|IgnoreFallDamageWithoutReset|param=float|Absolutely prevent the player from taking fall damage for [n] seconds.}} {{note|Should use "OnStartTrouch - !avivator". Consider the Time to be short, if there's another ledge they could jump off while being in the "no damage" timer.}} | {{IO|IgnoreFallDamageWithoutReset|param=float|Absolutely prevent the player from taking fall damage for [n] seconds.}} {{note|Should use "OnStartTrouch - !avivator". Consider the Time to be short, if there's another ledge they could jump off while being in the "no damage" timer.}} |
Revision as of 10:58, 1 November 2022
![]() |
---|
CTerrorPlayer |
Template:L4d2 point The player itself. This entity still exists even if the player is dead.

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
.
- SetHUDVisibility <boolean >
- Hides or displays the HUD.
- SetFogController <string >
- Sets the env_fog_controller to use.
- SpeakResponseConcept <string >
- Speak the specified response concept immediately.
- IgnoreFallDamage <float >
- 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 >
- Absolutely prevent the player from taking fall damage for [n] seconds.
Note:Should use "OnStartTrouch - !avivator". Consider the Time to be short, if there's another ledge they could jump off while being in the "no damage" timer.
- SetCommentaryStatueMode
- [Todo].
- DisableLedgeHang
- Disable ledge hanging by player.
- EnableLedgeHang
- Enable ledge hanging by player.
- TeleportToSurvivorPosition <string >
- Teleport a player to an info_survivor_position entity, then freezes them. To unfreeze them, use the
ReleaseSurvivorPositions
input from info_director or the player'sReleaseFromSurvivorPosition
input.
- ReleaseFromSurvivorPosition
- Unfreezes and releases the player from an info_survivor_position entity if they are at one.
- CancelCurrentScene
- [Todo]
- OnRescueZoneTouch
- [Todo]