weaponAccessories: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
Line 41: Line 41:
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
<!-- CONTINUE Notes -->
<dl class="command_description">
<dd class="notedate">Posted on October 26, 2014 - 08:48 (UTC)</dd>
<dt class="note">[[User:Killzone Kid|Killzone Kid]]</dt>
<dd class="note">
To check if currently selected muzzle has a silencer:
<code>_silencer <nowiki>=</nowiki> [[player]] [[weaponAccessories]] [[currentMuzzle]] [[player]] [[select]] 0;
hasSilencer <nowiki>=</nowiki> ![[isNil]] "_silencer" && {_silencer !<nowiki>=</nowiki> ""};</code>
</dd>
</dl>
<!-- DISCONTINUE Notes -->

Revision as of 10:48, 26 October 2014

Hover & click on the images for description

Description

Description:
Get array with all items linked to a given weapon.
Groups:
Uncategorised

Syntax

Syntax:
unit weaponAccessories weapon
Parameters:
unit: Object
weapon: String
Return Value:
Array

Examples

Example 1:

Additional Information

See also:
See also needed

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

Posted on October 26, 2014 - 08:48 (UTC)
Killzone Kid
To check if currently selected muzzle has a silencer: _silencer = player weaponAccessories currentMuzzle player select 0; hasSilencer = !isNil "_silencer" && {_silencer != ""};