isDamageAllowed: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Take[ _]On[ _]Helicopters(\|.*)?\]\]" to "{{GameCategory|tkoh|Scripting Commands}}")
m (description)
Line 13: Line 13:
____________________________________________________________________________________________
____________________________________________________________________________________________


| A getter for [[allowDamage]] command. The command indicates if damage is allowed at current [[local]]ity, hence local effect of the command. A complete solution for being able to tell whether or not an object can be damaged at current locality looks like this:
| A getter for [[allowDamage]] command. The command indicates if damage is allowed at current [[local]]ity, hence local effect of the command. For complete solution for being able to tell whether or not an object can be damaged at current locality see '''Example 1'''.|DESCRIPTION=
<code>_canBeDamaged {{=}} [[local]] _obj && [[isDamageAllowed]] _obj;</code>|DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 23: Line 22:
| [[Boolean]] |RETURNVALUE=  
| [[Boolean]] |RETURNVALUE=  


|x1= <code>[[private]] _isInvincible = [[not]] [[isDamageAllowed]] [[player]];</code> |EXAMPLE1=  
|x1= <code>[[private]] _canBeDamaged = [[local]] _obj && [[isDamageAllowed]] _obj;</code> |EXAMPLE1=  
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 16:30, 15 January 2021

Hover & click on the images for description

Description

Description:
A getter for allowDamage command. The command indicates if damage is allowed at current locality, hence local effect of the command. For complete solution for being able to tell whether or not an object can be damaged at current locality see Example 1.
Multiplayer:
This command only works locally. It always returns false when called on non local objects
Groups:
Object Manipulation

Syntax

Syntax:
isDamageAllowed object
Parameters:
object: Object
Return Value:
Boolean

Examples

Example 1:
private _canBeDamaged = local _obj && isDamageAllowed _obj;

Additional Information

See also:
allowDamagesetDamagesetHit

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