2015-01-13 03:23:14 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
class CfgPatches {
|
|
|
|
class ADDON {
|
2016-06-19 07:12:25 +00:00
|
|
|
name = COMPONENT_NAME;
|
2015-01-13 03:23:14 +00:00
|
|
|
units[] = {};
|
2021-10-15 18:48:33 +00:00
|
|
|
weapons[] = {"ACE_SpareBarrel_Item"};
|
2015-01-14 04:14:47 +00:00
|
|
|
requiredVersion = REQUIRED_VERSION;
|
2015-04-09 11:23:29 +00:00
|
|
|
requiredAddons[] = {"ace_interaction"};
|
2016-05-31 19:14:43 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
authors[] = {"commy2", "KoffeinFlummi", "esteldunedain"};
|
2016-06-01 21:45:51 +00:00
|
|
|
url = ECSTRING(main,URL);
|
2015-01-14 04:14:47 +00:00
|
|
|
VERSION_CONFIG;
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
#include "CfgEventHandlers.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
#include "CfgSounds.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
#include "CfgVehicles.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2016-02-27 03:29:30 +00:00
|
|
|
#include "CfgMagazines.hpp"
|
|
|
|
|
2015-01-13 03:23:14 +00:00
|
|
|
#include "CfgWeapons.hpp"
|
2015-03-08 15:57:06 +00:00
|
|
|
|
2015-12-15 07:09:26 +00:00
|
|
|
#include "ACE_Settings.hpp"
|
2015-03-08 15:57:06 +00:00
|
|
|
|
2016-01-20 16:44:51 +00:00
|
|
|
class CfgMovesBasic {
|
|
|
|
class ManActions {
|
|
|
|
GVAR(GestureMountMuzzle) = QGVAR(GestureMountMuzzle);
|
|
|
|
GVAR(GestureDismountMuzzle) = QGVAR(GestureDismountMuzzle);
|
|
|
|
};
|
|
|
|
|
|
|
|
class Actions {
|
|
|
|
class NoActions: ManActions {
|
|
|
|
GVAR(GestureMountMuzzle)[] = {QGVAR(GestureMountMuzzle), "Gesture"};
|
|
|
|
GVAR(GestureDismountMuzzle)[] = {QGVAR(GestureDismountMuzzle), "Gesture"};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-01-20 15:48:39 +00:00
|
|
|
class CfgGesturesMale {
|
|
|
|
class States {
|
2016-01-20 16:44:51 +00:00
|
|
|
class GestureMountMuzzle;
|
|
|
|
class GVAR(GestureMountMuzzle): GestureMountMuzzle {
|
2016-01-20 15:48:39 +00:00
|
|
|
speed = 0.3;
|
|
|
|
};
|
2016-01-20 16:44:51 +00:00
|
|
|
class GestureDismountMuzzle;
|
|
|
|
class GVAR(GestureDismountMuzzle): GestureDismountMuzzle {
|
2016-01-20 15:48:39 +00:00
|
|
|
speed = 0.3;
|
|
|
|
};
|
|
|
|
};
|
2016-05-24 13:13:11 +00:00
|
|
|
};
|