isDamageAllowed: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(locality correction)
(unnecessary)
(3 intermediate revisions by 3 users not shown)
Line 2: Line 2:
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma3dev |= Introduced in game
| arma3 |= Introduced in game


|1.69|= Version
|1.70|= Version


|arg= global |= MPARGUMENTS  
|arg= global |= MPARGUMENTS  
Line 27: Line 27:
| [[allowDamage]], [[setDamage]], [[setHit]] |= SEEALSO  
| [[allowDamage]], [[setDamage]], [[setHit]] |= SEEALSO  


|mp=This command only works locally and must be run on all machines to have global affect. |= MPBEHAVIOUR  
|mp=This command only works locally. It always returns false when called on non local objects |= MPBEHAVIOUR  
____________________________________________________________________________________________
____________________________________________________________________________________________
}}
}}
Line 42: Line 42:
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Arma 3: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Arma 3: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<!-- DISCONTINUE Notes -->

Revision as of 15:39, 9 January 2018

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. A complete solution for being able to tell whether or not an object can be damaged at current locality looks like this: _canBeDamaged = local _obj && isDamageAllowed _obj;
Multiplayer:
This command only works locally. It always returns false when called on non local objects
Groups:
Uncategorised

Syntax

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

Examples

Example 1:
_isGod = !isDamageAllowed player;

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