Func healthcharger (Jabroni Brawl): Difference between revisions
Jump to navigation
Jump to search
Note:For Keyvalues and Inputs affecting brush rendering, see Brush entity/Rendering related keyvalues and inputs
SirYodaJedi (talk | contribs) (Created page with "{{tabsBar|main=func_healthcharger}} {{CD|CWallHealth|nolink=1}} {{this is a|brush entity|name=func_healthcharger|game=Jabroni Brawl: Episode 3}} A brush-based version of {{ent|item_healthcharger}}. Unlike its {{hl2}} and {{hls}} counterparts, it contains all the keyvalues and I/O from its model-based counterparts, as well as a few additional values. ==Keyvalues== {{Brush rendering note}} {{KV Targetname}} {{KV|Deathmatch recharge delay|intn=dmdelay|integer|nofgd=1|How l...") |
SirYodaJedi (talk | contribs) No edit summary |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{tabsBar|main=func_healthcharger}} | {{tabsBar|main=func_healthcharger}} | ||
{{CD| | {{CD|???|base=CBaseToggle}} | ||
{{this is a|brush entity|name=func_healthcharger|game=Jabroni Brawl: Episode 3}} A brush-based version of {{ent|item_healthcharger}}. Unlike its {{hl2}} and {{hls}} counterparts, it contains all the keyvalues and I/O from its model-based counterparts, as well as a few additional values. | {{this is a|brush entity|name=func_healthcharger|game=Jabroni Brawl: Episode 3}} A brush-based version of {{ent|item_healthcharger}}. Unlike its {{hl2}} and {{hls}} counterparts, it contains all the keyvalues and I/O from its model-based counterparts, as well as a few additional values. | ||
Line 7: | Line 7: | ||
{{KV Targetname}} | {{KV Targetname}} | ||
{{KV|Deathmatch recharge delay|intn=dmdelay|integer|nofgd=1|How long to wait before automatically refilling this health charger.}} | {{KV|Deathmatch recharge delay|intn=dmdelay|integer|nofgd=1|How long to wait before automatically refilling this health charger.}} | ||
{{KV|Default juice|intn=juice|integer|nofgd=1|Default juice in the health charger.}} | |||
{{KV|Max juice|intn=max_juice|integer|nofgd=1|Maximum amount of juice in the health charger.}} | |||
{{KV|Increment amount|intn=incr_amnt|integer|nofgd=1|Amount of juice to dispense per charge.}} | |||
== Inputs == | == Inputs == | ||
{{I|Recharge|param=void|Recharge to full}} | {{I|Recharge|param=void|Recharge to full}} | ||
{{I|SetCharge|param= | {{I|SetCharge|param=integer|This sets the remaining health in the charger to whatever value you specify.}} | ||
{{I|SetIncrement|param=integer|Change increment amount.}} | |||
==Outputs== | ==Outputs== |
Latest revision as of 08:55, 9 May 2025
![]() |
---|
??? |
func_healthcharger
is a brush entity available in Jabroni Brawl: Episode 3. A brush-based version of item_healthcharger. Unlike its
and
counterparts, it contains all the keyvalues and I/O from its model-based counterparts, as well as a few additional values.
Keyvalues

- Name (targetname) <string>[ Edit ]
- The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g.
parentname
ortarget
).
Also displayed in Hammer's 2D views and Entity Report.See also: Generic Keyvalues, Inputs and Outputs available to all entities
- Deathmatch recharge delay (dmdelay) <integer> !FGD
- How long to wait before automatically refilling this health charger.
Inputs
- Recharge <void>
- Recharge to full
- SetCharge <integer >
- This sets the remaining health in the charger to whatever value you specify.
- SetIncrement <integer >
- Change increment amount.
Outputs
- OutRemainingHealth <float >
- Fires once for every single point of health given to the player. That means it will not fire when the charger is depleted or when the player is at full health. This output automatically puts the amount of points remaining in the charger[confirm] into the parameter box for inputs, if the mapper does not override the parameter with something else.
- OnHalfEmpty <void>
- Fired when the charger reaches halfway depletion.
- OnEmpty <void>
- Fired when the charger is depleted.
- OnFull <void>
- Fired when the charger is recharged to full.
- OnPlayerUse <void>
- Fired when the player tries to +use the healthcharger.
See also
- func_recharge, a brush-based recharger meant for suit power.