Math counter
		
		
		
		Jump to navigation
		Jump to search
		
Entity description

An entity that stores and manipulates an integer value. It can trigger on reaching user-defined maximum or minimum values, or output its value every time it changes. It also has the ability to perform simple mathematical functions.
 Note:Only stores integers.
Note:Only stores integers.See also
Keyvalues
- Minimum Legal Value ([todo internal name (i)]) <integer>
- Minimum legal value for the counter. If min=0 and max=0, no clamping is performed.
- Maximum Legal Value ([todo internal name (i)]) <integer>
- Maximum legal value for the counter. If min=0 and max=0, no clamping is performed.
- Name (targetname) <string>[ Edit ]
- The name that other entities refer to this entity by, via Inputs/Outputs or other keyvalues (e.g. parentnameortarget).
 Also displayed in Hammer's 2D views and Entity Report.See also: Generic Keyvalues, Inputs and Outputs available to all entities
- Start Disabled (StartDisabled) <boolean>
- Stay dormant until activated (with theEnableinput).
Inputs
- Add <integer>
- Add an amount to the counter and fire the OutValueoutput with the result.
- Divide <integer>
- Divide the counter by an amount and fire the OutValueoutput with the result.
- Multiply <integer>
- Multiply the counter by an amount and fire the OutValueoutput with the result.
- SetValue <integer>
- Set the counter to a new value and fire the OutValueoutput with the result.
- SetValueNoFire <integer>
- Set the counter to a new value without firing any outputs.
- Subtract <integer>
- Subtract an amount from the counter and fire the OutValueoutput with the result.
- SetHitMax <integer>
- Set the upper bound of the counter and fire the OutValueoutput with the current value.
- SetHitMin <integer>
- Set the lower bound of the counter and fire the OutValueoutput with the current value.
- GetValue
- Causes the counter fire its OnGetValueoutput with the current value of the counter. Used for polling the counter when you don't want constant updates from theOutValueoutput.
EnableDisable:
- Enable / Disable
- Enable/disable this entity from performing its task. It might also disappear from view.
Outputs
- OutValue <integer>
- Fired when the counter value changes.
- OnHitMin
- Fired when the counter value meets or goes below the min value. The counter must go back above the min value before the output will fire again.
- OnHitMax
- Fired when the counter value meets or exceeds the max value. The counter must go below the max value before the output will fire again.
- OnGetValue <integer>
- Fired in response to the GetValueinput. Used for polling the counter when you don't want constant updates from theOutValueoutput.
- OnChangedFromMin   (in all games since  ) )
- Fired when the counter value changes from the minimum value.
- OnChangedFromMax   (in all games since  ) )
- Fired when the counter value changes from the max value.
