ACE3/addons/common/functions/fnc_dropBackpack.sqf

23 lines
484 B
Plaintext
Raw Normal View History

2015-04-11 13:59:21 +00:00
/*
* Author: commy2
2015-04-11 14:27:04 +00:00
* Drops a backback. Also returns the ground wepaon holder object of the dropped backpack.
2015-04-11 13:59:21 +00:00
*
2015-09-20 20:16:51 +00:00
* Arguments:
* 0: Unit that has a backpack <OBJECT>
2015-04-11 13:59:21 +00:00
*
* Return value:
2015-09-20 20:16:51 +00:00
* Ground wepaon holder with backpack <OBJECT>
2015-04-11 13:59:21 +00:00
*
2015-09-20 20:16:51 +00:00
* Public: Yes
2015-04-11 13:59:21 +00:00
*/
#include "script_component.hpp"
params [["_unit", objNull, [objNull]]];
2015-04-11 13:59:21 +00:00
private _backpackObject = backpackContainer _unit;
2015-09-20 20:16:51 +00:00
_unit addBackpack "ACE_FakeBackpack";
2015-04-11 13:59:21 +00:00
removeBackpack _unit;
2015-09-20 20:16:51 +00:00
objectParent _backpackObject // return