getArtilleryETA: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
| arma3 | | arma3 | ||
|0.56 | |0.56 | ||
|arg= global | |arg= global | ||
|gr1= Artillery | |gr1= Artillery | ||
| Returns ETA to the target in seconds for given artillery unit based on target position and used magazine, -1 if target can't be hit. | | Returns ETA to the target in seconds for given artillery unit based on target position and used magazine, -1 if target can't be hit. | ||
| unit '''getArtilleryETA''' [targetPosition, magazineType] | | unit '''getArtilleryETA''' [targetPosition, magazineType] | ||
|p1= unit: [[Object]] - artillery unit | |p1= unit: [[Object]] - artillery unit | ||
|p2= targetPosition: [[Position]] - position of the target | |p2= targetPosition: [[Position]] - position of the target | ||
|p3= magazineType: [[String]] - type of magazine used | |p3= magazineType: [[String]] - type of magazine used | ||
| [[Number]] | | [[Number]] | ||
|x1= <code>_mortar [[getArtilleryETA]] [<nowiki/>[[getPos]] _target, [[getArtilleryAmmo]] [_mortar] [[select]] 0];</code> | |x1= <code>_mortar [[getArtilleryETA]] [<nowiki/>[[getPos]] _target, [[getArtilleryAmmo]] [_mortar] [[select]] 0];</code> | ||
|x2= <code>_mortar [[getArtilleryETA]] [<nowiki/>[[position]] _target, [[currentMagazine]] _mortar];</code> | |x2= <code>_mortar [[getArtilleryETA]] [<nowiki/>[[position]] _target, [[currentMagazine]] _mortar];</code> | ||
| [[getArtilleryAmmo]], [[commandArtilleryFire]], [[doArtilleryFire]], [[enableEngineArtillery]], [[getArtilleryComputerSettings]], [[shownArtilleryComputer]], [[inRangeOfArtillery]] | | [[getArtilleryAmmo]], [[commandArtilleryFire]], [[doArtilleryFire]], [[enableEngineArtillery]], [[getArtilleryComputerSettings]], [[shownArtilleryComputer]], [[inRangeOfArtillery]] | ||
| |MPBEHAVIOUR= | | |MPBEHAVIOUR= |
Revision as of 00:37, 18 January 2021
Description
- Description:
- Returns ETA to the target in seconds for given artillery unit based on target position and used magazine, -1 if target can't be hit.
- Groups:
- Artillery
Syntax
- Syntax:
- unit getArtilleryETA [targetPosition, magazineType]
- Parameters:
- unit: Object - artillery unit
- targetPosition: Position - position of the target
- magazineType: String - type of magazine used
- Return Value:
- Number
Examples
- Example 1:
_mortar getArtilleryETA [getPos _target, getArtilleryAmmo [_mortar] select 0];
- Example 2:
_mortar getArtilleryETA [position _target, currentMagazine _mortar];
Additional Information
- See also:
- getArtilleryAmmocommandArtilleryFiredoArtilleryFireenableEngineArtillerygetArtilleryComputerSettingsshownArtilleryComputerinRangeOfArtillery
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
- Posted on August 26, 2013
- Killzone_Kid
- To avoid wrong ETA readings, position of the target should only be obtained via position or getPos