allowDamage: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Command only supports entities (source: Killzone_Kid))
m (Some wiki formatting)
 
(One intermediate revision by the same user not shown)
Line 39: Line 39:
}}
}}


<dl class="command_description">
{{Note
 
|user= AgentRev01
<dt><dt>
|timestamp= 20130902182600
<dd class="notedate">Posted on September 2, 2013</dd>
|text=
<dt class="note">[[User:AgentRev01|AgentRev]]</dt>
<dd class="note">
<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>
<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.
 
}}
</dl>

Latest revision as of 00:16, 5 May 2024

Hover & click on the images for description

Description

Description:
Enables / disables an entity's ability to receive damage. This command does not prevent the entity from taking scripted damage from commands such as setDamage, setHit, setHitIndex or setHitPointDamage.
This command only supports entities (Entity is a child class of Object, i.e. all entities are objects, but not all objects are entities). Consequently, there are objects that are not affected by this command, for example terrain vegetation such as trees.
Multiplayer:
This command has to be executed where the object is local. Its effect will only last as long as the object does not change locality. If the object changes locality, the command needs to be executed again on the new owner's machine to maintain the effect.
Alias:
allowDammage
Groups:
Object Manipulation

Syntax

Syntax:
entity allowDamage allow
Parameters:
entity: Object
allow: Boolean
Return Value:
Nothing

Examples

Example 1:
player allowDamage false;

Additional Information

See also:
isDamageAllowed setDamage setHit setHitIndex setHitPointDamage damage

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
AgentRev01 - c
Posted on Sep 02, 2013 - 18:26 (UTC)
_object allowDamage false;
has the same effect as
_object addEventHandler ["HandleDamage", {0}];
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.