captive: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "\[\[Category\: ?Command[ _]Group\:.*\|\{\{uc\:\{\{PAGENAME\}\}\}\}\]\] " to "")
(33 intermediate revisions by 15 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{Command|Comments=
____________________________________________________________________________________________
____________________________________________________________________________________________


| ofp |= Game name
| ofp |Game name=


|1.00|= Game version
|1.00|Game version=


|arg= global |= Arguments in MP
|arg= global |Multiplayer Arguments=
 
|gr1= Object Manipulation |GROUP1=
 
|gr2= Sides |GROUP2=
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns if the given unit is captive. "captive" means that enemies will not shoot at the unit. |= Description
| Returns the captive state of the given unit (set with [[setCaptive]]). A captive unit will not be attacked by its enemies.
{{Important|
While a captive unit won't be attacked, it will still attack its enemies – be sure to [[setBehaviour]] "CARELESS" / [[removeAllWeapons]] accordingly.}} |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''captive''' unit |= Syntax
| [[captive]] object |SYNTAX=


|p1= unit: [[Object]] |= Parameter 1
|p1= object: [[Object]] - unit or vehicle |PARAMETER1=


| [[Boolean]] -
| [[Boolean]] - [[true]] if the unit is captive, [[false]] if not |RETURNVALUE=
true if the unit is captive, false if not |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>?!(captive general) : general setCaptive true</pre> |= Example 1
|x1= <code>[[if]] ([[captive]] _general) [[then]] { [[removeAllWeapons]] _general; };</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[setCaptive]] |= See also
| [[captiveNum]], [[setCaptive]], [[side]] |SEEALSO=


}}
}}
Line 35: Line 40:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
Old Notes (temporary):


Use [[setCaptive]] to make a unit captive.


[[Category:Scripting Commands|CAPTIVE]]
[[Category:Scripting Commands|CAPTIVE]]
[[Category:Scripting Commands OFP 1.99|CAPTIVE]]
[[Category:Scripting Commands OFP 1.96|CAPTIVE]]
[[Category:Scripting Commands OFP 1.96|CAPTIVE]]
[[Category:Scripting Commands OFP 1.46|CAPTIVE]]
[[Category:Scripting Commands OFP 1.46|CAPTIVE]]
[[Category:Scripting Commands ArmA|CAPTIVE]]
[[Category:Scripting Commands Armed Assault|CAPTIVE]]
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 16:48, 24 September 2020

Hover & click on the images for description

Description

Description:
Returns the captive state of the given unit (set with setCaptive). A captive unit will not be attacked by its enemies.
While a captive unit won't be attacked, it will still attack its enemies – be sure to setBehaviour "CARELESS" / removeAllWeapons accordingly.
Groups:
Object ManipulationSides

Syntax

Syntax:
captive object
Parameters:
object: Object - unit or vehicle
Return Value:
Boolean - true if the unit is captive, false if not

Examples

Example 1:
if (captive _general) then { removeAllWeapons _general; };

Additional Information

See also:
captiveNumsetCaptiveside

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