alive: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(updated)
mNo edit summary
Line 30: Line 30:
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
Returns 'BOOL' if the object does'nt exists. For example in multiplayer when a object is removed alive will return 'BOOL' if a new player join after the object were destroyed.
Returns 'BOOL' if the object does'nt exists. For example in multiplayer when a object is removed alive will return 'BOOL' if a new player join after the object were destroyed.
--
If you're determining whether a unit is still viable, you might also want to look at [[canMove]], [[canFire]] and [[canStand]]. [[User:Nomdeplume|nomdeplume]] 12:45, 16 November 2009 (CET)
<!-- Note Section END -->
<!-- Note Section END -->
</dl>
</dl>

Revision as of 13:45, 16 November 2009

Hover & click on the images for description

Description

Description:
Check if given vehicle/person/building is alive (i.e. not dead or destroyed).
Groups:
Uncategorised

Syntax

Syntax:
alive object
Parameters:
object: Object to test
Return Value:
Boolean: true when alive, false when dead

Examples

Example 1:
?!(alive player) : exit

Additional Information

See also:
setDamagedamage

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

Returns 'BOOL' if the object does'nt exists. For example in multiplayer when a object is removed alive will return 'BOOL' if a new player join after the object were destroyed. -- If you're determining whether a unit is still viable, you might also want to look at canMove, canFire and canStand. nomdeplume 12:45, 16 November 2009 (CET)

Bottom Section