mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
f35f80ee82
* Dynamic Add * Support 1.70 Pylon Loadouts * Properly handle old compat pbos - Update RHS Compat * Re-add documentation * cleanup headers (note from other pr) * Cleanup * Fix var spelling
38 lines
938 B
Plaintext
38 lines
938 B
Plaintext
/*
|
|
* Author: GitHawk
|
|
* Creates a carryable ammunition dummy object.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Magazine Classname <STRING>
|
|
*
|
|
* Return Value:
|
|
* Created Dummy <OBJECT>
|
|
*
|
|
* Example:
|
|
* [player, "500Rnd_127x99_mag_Tracer_Red"] call ace_rearm_fnc_createDummy
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params [
|
|
["_unit", objNull, [objNull]],
|
|
["_magazineClass", "", [""]]
|
|
];
|
|
|
|
private _ammo = getText (configFile >> "CfgMagazines" >> _magazineClass >> "ammo");
|
|
private _dummyName = getText (configFile >> "CfgAmmo" >> _ammo >> QGVAR(dummy));
|
|
private _dummy = objNull;
|
|
if !(_dummyName == "") then {
|
|
_dummy = _dummyName createVehicle (position _unit);
|
|
} else {
|
|
_dummy = QGVAR(defaultCarriedObject) createVehicle (position _unit);
|
|
};
|
|
_dummy allowDamage false;
|
|
_dummy setVariable [QGVAR(magazineClass), _magazineClass, true];
|
|
|
|
TRACE_4("createdDummy",_unit,_magazineClass,_dummyName,_dummy);
|
|
|
|
_dummy
|