mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
736 B
Plaintext
30 lines
736 B
Plaintext
/*
|
|
* Author: Commy2
|
|
* Make a unit start swapping it's barrel
|
|
*
|
|
* Argument:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Weapon <STRING>
|
|
*
|
|
* Return value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, currentWeapon player] call ace_overheating_fnc_swapBarrel
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_player", "_weapon"];
|
|
TRACE_2("params",_player,_weapon);
|
|
|
|
if (stance _player != "PRONE") then {
|
|
[_player, "amovpknlmstpsraswrfldnon", 1] call EFUNC(common,doAnimation);
|
|
};
|
|
_player playActionNow "GestureDismountMuzzle";
|
|
playSound "ACE_BarrelSwap";
|
|
_player playAction "GestureMountMuzzle";
|
|
|
|
[5, [_player, _weapon], {(_this select 0) call FUNC(swapBarrelCallback)}, {}, (localize LSTRING(SwappingBarrel))] call EFUNC(common,progressBar);
|