allowDamage: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<dd class="note">([^}]*)<code>([^<]*)<\/code>" to "<dd class="note">$1<sqf>$2</sqf>") |
Lou Montana (talk | contribs) m (Text replacement - "<dd class="note">([^}]*)<code>([^<]*)<\/code>" to "<dd class="note">$1<sqf>$2</sqf>") |
||
Line 47: | Line 47: | ||
<sqf>_object allowDamage false;</sqf> | <sqf>_object allowDamage false;</sqf> | ||
has the same effect as | has the same effect as | ||
< | <sqf>_object addEventHandler ["HandleDamage", {0}];</sqf> | ||
'''except for buildings that are native to the map'''; for those, the effects of HandleDamage will not sync properly across all clients, even if added to the building on every client and the server.</dd> | '''except for buildings that are native to the map'''; for those, the effects of HandleDamage will not sync properly across all clients, even if added to the building on every client and the server.</dd> | ||
</dl> | </dl> |
Revision as of 10:58, 13 May 2022
Description
- Description:
- Allow or prevent an object being damaged (or injured, or killed). The command does not prevent object from taking scripted damage such as setHit, setHitIndex, setHitPointDamage or setDamage. To check if damage is allowed at current locality, see isDamageAllowed.
- Multiplayer:
- Alias:
- allowDammage
- Groups:
- Object Manipulation
Syntax
- Syntax:
- object allowDamage allow
- Parameters:
- object: Object
- allow: Boolean
- Return Value:
- Nothing
Examples
- Example 1:
Additional Information
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 September 2, 2013
- AgentRev
-
has the same effect asexcept for buildings that are native to the map; for those, the effects of HandleDamage will not sync properly across all clients, even if added to the building on every client and the server.