isDamageAllowed: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "{{HashLink" to "{{Link")
 
(21 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma3 |Introduced in game=
|game1= arma3
|version1= 1.70


|1.70|Version=
|arg= global


|arg= global |MPARGUMENTS=  
|eff= local


|eff= local |MPEFFECTS=  
|gr1= Object Manipulation


|gr1= Object Manipulation |GROUP1=
|descr= 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 {{Link|#Example 1}}.


| 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:
|s1= [[isDamageAllowed]] object
<code>_canBeDamaged {{=}} [[local]] _obj && [[isDamageAllowed]] _obj;</code>|DESCRIPTION=
____________________________________________________________________________________________


| [[isDamageAllowed]] object |SYNTAX=
|p1= object: [[Object]]


|p1= object: [[Object]] |PARAMETER1=
|r1= [[Boolean]]


| [[Boolean]] |RETURNVALUE=  
|x1= <sqf>private _canBeDamaged = local _obj && isDamageAllowed _obj;</sqf>


|x1= <code>[[private]] _isInvincible = [[not]] [[isDamageAllowed]] [[player]];</code> |EXAMPLE1=
|seealso= [[allowDamage]] [[setDamage]] [[setHit]]
____________________________________________________________________________________________


| [[allowDamage]], [[setDamage]], [[setHit]] |SEEALSO=
|mp= Always returns [[false]] when called on non-local objects
 
|mp= This command only works locally. It always returns false when called on non local objects |MPBEHAVIOUR=
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
</dl>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]

Latest revision as of 18:44, 4 January 2023

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:
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:
allowDamage setDamage setHit

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