damage: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (template:command argument fix)
Line 9: Line 9:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Return the damage value of an object. |= Description
| Return the damage value of an object. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Number]] <nowiki>=</nowiki> '''damage''' object |= Syntax
| [[Number]] <nowiki>=</nowiki> '''damage''' object |SYNTAX=


|p1= object: [[Object]] |= Parameter 1
|p1= object: [[Object]] |PARAMETER1=


| [[Number]] -   
| [[Number]] -   
The returned number is in range 0 (healthy) to 1 (dead). |= Return value
The returned number is in range 0 (healthy) to 1 (dead). |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>[[?]] (([[damage]] [[player]])>0.1) : [[player]] [[groupChat]] "I'm hurt! Medic!"</code> |= Example 1
|x1= <code>[[?]] (([[damage]] [[player]])>0.1) : [[player]] [[groupChat]] "I'm hurt! Medic!"</code> |EXAMPLE1=
|x2= <code>[[if]] (([[damage]] [[player]]) > 0.1) [[then]] {  
|x2= <code>[[if]] (([[damage]] [[player]]) > 0.1) [[then]] {  
     [[player]] [[groupChat]] "I'm hurt! Medic!";  
     [[player]] [[groupChat]] "I'm hurt! Medic!";  
};</code> |= Example 2
};</code> |EXAMPLE2=
|x2= <code>_health = (1 - '''damage''' [[player]]) * 100  //Health in % from 0 to 100</code> |= Example 2
|x2= <code>_health = (1 - '''damage''' [[player]]) * 100  //Health in % from 0 to 100</code> |EXAMPLE2=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[setDamage]], [[setDammage]], [[getDammage]], [[setHit]], [[getHit]], [[getHitIndex]], [[setHitIndex]], [[getHitPointDamage]], [[setHitPointDamage]] |= See also
| [[setDamage]], [[setDammage]], [[getDammage]], [[setHit]], [[getHit]], [[getHitIndex]], [[setHitIndex]], [[getHitPointDamage]], [[setHitPointDamage]] |SEEALSO=


}}
}}

Revision as of 15:37, 7 April 2019

Hover & click on the images for description

Description

Description:
Return the damage value of an object.
Groups:
Uncategorised

Syntax

Syntax:
Number = damage object
Parameters:
object: Object
Return Value:
Number - The returned number is in range 0 (healthy) to 1 (dead).

Examples

Example 1:
? ((damage player)>0.1) : player groupChat "I'm hurt! Medic!"
Example 2:
_health = (1 - damage player) * 100 //Health in % from 0 to 100

Additional Information

See also:
setDamagesetDammagegetDammagesetHitgetHitgetHitIndexsetHitIndexgetHitPointDamagesetHitPointDamage

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

Notes

Bottom Section

Posted on February 13, 2015 - 20:20 (UTC)
Pierre MGI
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 function.