mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
465 B
Plaintext
21 lines
465 B
Plaintext
/*
|
|
* Author: Commy2
|
|
*
|
|
* Swap barrel callback
|
|
*
|
|
* Argument:
|
|
* 0: unit
|
|
* 1: weapon
|
|
*
|
|
* Return value:
|
|
* None
|
|
*/
|
|
#include "\z\ace\addons\overheating\script_component.hpp"
|
|
|
|
EXPLODE_2_PVT(_this,_player,_weapon);
|
|
|
|
// don't consume the barrel, but rotate through them.
|
|
[localize "STR_ACE_Overheating_SwappedBarrel", QUOTE(PATHTOF(UI\spare_barrel_ca.paa))] call EFUNC(common,displayTextPicture);
|
|
|
|
_player setVariable [format [QGVAR(%1), _weapon], [0, 0], false];
|