damage: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>([^<]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^<]*) *<\/code>" to "<code>$1$2$3</code>") |
Lou Montana (talk | contribs) m (Text replacement - "<code>([^<]*)\[\[([^|]+\|)(\/?\/?>?>?<?=?)\]\]([^<]*) *<\/code>" to "<code>$1$3$4</code>") |
||
Line 34: | Line 34: | ||
|r1= [[Number]] - The returned number in range (healthy) 0..1 (dead). | |r1= [[Number]] - The returned number in range (healthy) 0..1 (dead). | ||
|x1= <code> | |x1= <code>> 0.1) : player groupChat "I'm hurt! Medic!" // SQS</code> | ||
|x2= <code>if ((damage player) | |x2= <code>if ((damage player) > 0.1) then | ||
{ | { | ||
player groupChat "I'm hurt! Medic!"; | player groupChat "I'm hurt! Medic!"; |
Revision as of 13:30, 12 May 2022
Description
- Description:
- Return the damage value of an object.
- Alias:
- getDammagesic
- Groups:
- Object Manipulation
Syntax
- Syntax:
- damage object
- Parameters:
- object: Object
- Return Value:
- Number - The returned number in range (healthy) 0..1 (dead).
Examples
- Example 1:
> 0.1) : player groupChat "I'm hurt! Medic!" // SQS
- Example 2:
if ((damage player) > 0.1) then { player groupChat "I'm hurt! Medic!"; };
- Example 3:
private _health = (1 - damage player) * 100; // Health in % from 0 to 100
Additional Information
- See also:
- setDamage setHit getHit getHitIndex setHitIndex getHitPointDamage setHitPointDamage "HandleDamage" Event Handler
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on Feb 13, 2015 - 20:20 (UTC)
- The returned value depends on the couple target/ammo fired. This value has no correlation with the sum of all hitpoints damage status and the effective status of the object. Firing bullets on cars often lead to weird results. For example: damage returns zero while a Hunter is fired at will with an .50 HMG! Hunter can be almost destroyed with zero damage for this function. If you script, use instead the getHitPointDamage command.
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Object Manipulation