throwables: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Killzone Kid (talk | contribs) No edit summary |
||
Line 15: | Line 15: | ||
|p1= unit: [[Object]] | |p1= unit: [[Object]] | ||
|r1= [[Array]] - array of throwables in format: | |r1= [[Array]] - array of throwables in format [[magazineName, muzzleName, id], ...], where: | ||
* magazineName: [[String]] | * magazineName: [[String]] | ||
* muzzleName: [[String]] | * muzzleName: [[String]] | ||
* | * id: [[Array]] of [[Number]] pairs: [itemWorldID, creatorID] | ||
|x1= <sqf>throwables player; | |x1= <sqf>throwables player; |
Revision as of 10:41, 13 April 2024
{{RV|type=command
|game1= arma3 |version1= 2.18 |branch= dev
|gr1= Weapons
|gr2= Unit Inventory
|descr= Returns all throwables in unit inventory in currentThrowable format.
|s1= throwables unit
|p1= unit: Object
|r1= Array - array of throwables in format [[magazineName, muzzleName, id], ...], where:
|x1=
throwables player;
/*
[
["HandGrenade","HandGrenadeMuzzle",[1e+007,0]],
["SmokeShell","SmokeShellMuzzle",[1e+007,0]],
["SmokeShellGreen","SmokeShellGreenMuzzle",[1e+007,0]],
["Chemlight_green","ChemlightGreenMuzzle",[1e+007,0]],
["Chemlight_green","",[1e+007,0]],
["HandGrenade","",[1e+007,0]]
]
*/
|seealso= selectThrowable currentThrowable isThrowable selectWeapon currentWeapon currentMagazine currentMuzzle BIS_fnc_isThrowable }}