inRangeOfArtillery: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (global args)
m (Text replacement - "\|x([0-9])= <sqf>([^\/: ]+)([^;])<\/sqf>" to "|x$1= <sqf>$2$3;</sqf>")
(41 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|0.50|= Game version
|version1= 0.50
|arg= global|= Arguments in MP
|arg= global
____________________________________________________________________________________________


| Returns true if all given units are able to fire at given position with given magazineType.  |= Description
|gr1= Artillery
____________________________________________________________________________________________


| pos '''inRangeOfArtillery''' <nowiki>[[</nowiki>unit], magazineType] |= Syntax
|descr= Returns true if all given units are able to fire at given position with given magazineType.


|p1= pos: [[Position]] |= PARAMETER1
|s1= pos [[inRangeOfArtillery]] [units, magazineType]


|p2= <nowiki>[[</nowiki>unit], magazineType]: [[Array]] |= PARAMETER2
|p1= pos: [[Position]]


|p3= [unit]: [[Array]] - Array of units. |= PARAMETER3
|p2= units: [[Array]] - array of units.


|p4= unit: [[Object]] |= PARAMETER4
|p3= magazineType: [[String]] - '''case-sensitive'''


|p5= magazineType: [[String]] |= PARAMETER5
|r1= [[Boolean]]


| [[Boolean]] |= RETURNVALUE
|x1= <sqf>_isInRange = getMarkerPos "myTarget" inRangeOfArtillery [[myArty], "32Rnd_155mm_Mo_shells"];</sqf>


|seealso= [[getArtilleryAmmo]] [[commandArtilleryFire]] [[doArtilleryFire]] [[enableEngineArtillery]] [[getArtilleryComputerSettings]] [[shownArtilleryComputer]] [[getArtilleryETA]]
}}


|x1= <code>_isInRange = getMarkerPos "myTarget" inRangeOfArtillery <nowiki>[[</nowiki>myArty<nowiki>]</nowiki>, "32Rnd_155mm_Mo_shells"<nowiki>]</nowiki>
{{Note
</code>|= EXAMPLE1
|user= Waffle SS.
 
|timestamp= 20150710194600
____________________________________________________________________________________________
|text= Using an empty artillery vehicle will return false.
 
| [[getArtilleryAmmo]], [[commandArtilleryFire]], [[doArtilleryFire]], [[enableEngineArtillery]], [[getArtilleryComputerSettings]], [[shownArtilleryComputer]], [[getArtilleryETA]] |= SEEALSO
 
| |= MPBEHAVIOUR
____________________________________________________________________________________________
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style='display:none'>Bottom Section</h3>
[[Category:Arma_3:_New_Scripting_Commands_List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 23:43, 28 June 2022

Hover & click on the images for description

Description

Description:
Returns true if all given units are able to fire at given position with given magazineType.
Groups:
Artillery

Syntax

Syntax:
pos inRangeOfArtillery [units, magazineType]
Parameters:
pos: Position
units: Array - array of units.
magazineType: String - case-sensitive
Return Value:
Boolean

Examples

Example 1:
_isInRange = getMarkerPos "myTarget" inRangeOfArtillery [[myArty], "32Rnd_155mm_Mo_shells"];

Additional Information

See also:
getArtilleryAmmo commandArtilleryFire doArtilleryFire enableEngineArtillery getArtilleryComputerSettings shownArtilleryComputer getArtilleryETA

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
Waffle SS. - c
Posted on Jul 10, 2015 - 19:46 (UTC)
Using an empty artillery vehicle will return false.