mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
init commit 9m14
This commit is contained in:
parent
80b2595abb
commit
20a3277ac8
1
addons/malyutka/$PBOPREFIX$
Normal file
1
addons/malyutka/$PBOPREFIX$
Normal file
@ -0,0 +1 @@
|
||||
z\ace\addons\malyutka
|
4
addons/malyutka/CfgAmmo.hpp
Normal file
4
addons/malyutka/CfgAmmo.hpp
Normal file
@ -0,0 +1,4 @@
|
||||
class CfgAmmo {
|
||||
|
||||
};
|
||||
|
17
addons/malyutka/CfgEventHandlers.hpp
Normal file
17
addons/malyutka/CfgEventHandlers.hpp
Normal file
@ -0,0 +1,17 @@
|
||||
class Extended_PreStart_EventHandlers {
|
||||
class ADDON {
|
||||
init = QUOTE(call COMPILE_FILE(XEH_preStart));
|
||||
};
|
||||
};
|
||||
|
||||
class Extended_PreInit_EventHandlers {
|
||||
class ADDON {
|
||||
init = QUOTE(call COMPILE_FILE(XEH_preInit));
|
||||
};
|
||||
};
|
||||
|
||||
class Extended_PostInit_EventHandlers {
|
||||
class ADDON {
|
||||
init = QUOTE(call COMPILE_FILE(XEH_postInit));
|
||||
};
|
||||
};
|
3
addons/malyutka/CfgMagazines.hpp
Normal file
3
addons/malyutka/CfgMagazines.hpp
Normal file
@ -0,0 +1,3 @@
|
||||
class CfgMagazines {
|
||||
};
|
||||
|
3
addons/malyutka/CfgVehicles.hpp
Normal file
3
addons/malyutka/CfgVehicles.hpp
Normal file
@ -0,0 +1,3 @@
|
||||
class CfgVehicles {
|
||||
|
||||
};
|
4
addons/malyutka/CfgWeapons.hpp
Normal file
4
addons/malyutka/CfgWeapons.hpp
Normal file
@ -0,0 +1,4 @@
|
||||
class CfgWeapons {
|
||||
|
||||
};
|
||||
|
12
addons/malyutka/README.md
Normal file
12
addons/malyutka/README.md
Normal file
@ -0,0 +1,12 @@
|
||||
ace_malutka
|
||||
===================
|
||||
|
||||
Adds 9M14 Malyutka MCLOS ATGM
|
||||
|
||||
|
||||
## Maintainers
|
||||
|
||||
The people responsible for merging changes to this component or answering potential questions.
|
||||
|
||||
- [Brandon-TCVM](https://github.com/TheCandianVendingMachine)
|
||||
|
0
addons/malyutka/XEH_PREP.hpp
Normal file
0
addons/malyutka/XEH_PREP.hpp
Normal file
2
addons/malyutka/XEH_postInit.sqf
Normal file
2
addons/malyutka/XEH_postInit.sqf
Normal file
@ -0,0 +1,2 @@
|
||||
#include "script_component.hpp"
|
||||
|
10
addons/malyutka/XEH_preInit.sqf
Normal file
10
addons/malyutka/XEH_preInit.sqf
Normal file
@ -0,0 +1,10 @@
|
||||
#include "script_component.hpp"
|
||||
|
||||
ADDON = false;
|
||||
|
||||
PREP_RECOMPILE_START;
|
||||
#include "XEH_PREP.hpp"
|
||||
PREP_RECOMPILE_END;
|
||||
|
||||
ADDON = true;
|
||||
|
4
addons/malyutka/XEH_preStart.sqf
Normal file
4
addons/malyutka/XEH_preStart.sqf
Normal file
@ -0,0 +1,4 @@
|
||||
#include "script_component.hpp"
|
||||
|
||||
#include "XEH_PREP.hpp"
|
||||
|
22
addons/malyutka/config.cpp
Normal file
22
addons/malyutka/config.cpp
Normal file
@ -0,0 +1,22 @@
|
||||
#include "script_component.hpp"
|
||||
|
||||
class CfgPatches {
|
||||
class ADDON {
|
||||
name = COMPONENT_NAME;
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
requiredVersion = REQUIRED_VERSION;
|
||||
requiredAddons[] = {"ace_common","ace_missileguidance"};
|
||||
author = ECSTRING(common,ACETeam);
|
||||
authors[] = {"Brandon (TCVM)"};
|
||||
url = ECSTRING(main,URL);
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
};
|
||||
|
||||
#include "CfgEventHandlers.hpp"
|
||||
#include "CfgAmmo.hpp"
|
||||
#include "CfgMagazines.hpp"
|
||||
#include "CfgWeapons.hpp"
|
||||
#include "CfgVehicles.hpp"
|
||||
|
BIN
addons/malyutka/data/9m14.p3d
Normal file
BIN
addons/malyutka/data/9m14.p3d
Normal file
Binary file not shown.
20
addons/malyutka/data/model.cfg
Normal file
20
addons/malyutka/data/model.cfg
Normal file
@ -0,0 +1,20 @@
|
||||
class CfgSkeletons {
|
||||
class Default {
|
||||
isDiscrete = 1;
|
||||
skeletonInherit = "";
|
||||
skeletonBones[] = {};
|
||||
};
|
||||
class ACE_Malyutka: Default {};
|
||||
};
|
||||
class CfgModels {
|
||||
class Default {
|
||||
sectionsInherit = "";
|
||||
sections[] = {};
|
||||
skeletonName = "";
|
||||
};
|
||||
class ACE_Malyutka : Default {
|
||||
sectionsInherit = "";
|
||||
sections[] = {};
|
||||
skeletonName = "ACE_Malyutka";
|
||||
};
|
||||
};
|
1
addons/malyutka/functions/script_component.hpp
Normal file
1
addons/malyutka/functions/script_component.hpp
Normal file
@ -0,0 +1 @@
|
||||
#include "\z\ace\addons\malyutka\script_component.hpp"
|
18
addons/malyutka/script_component.hpp
Normal file
18
addons/malyutka/script_component.hpp
Normal file
@ -0,0 +1,18 @@
|
||||
#define COMPONENT malyutka
|
||||
#define COMPONENT_BEAUTIFIED Malyutka
|
||||
#include "\z\ace\addons\main\script_mod.hpp"
|
||||
|
||||
// #define DEBUG_MODE_FULL
|
||||
// #define DISABLE_COMPILE_CACHE
|
||||
// #define ENABLE_PERFORMANCE_COUNTERS
|
||||
|
||||
#ifdef DEBUG_ENABLED_MALYUTKA
|
||||
#define DEBUG_MODE_FULL
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG_SETTINGS_MALYUTKA
|
||||
#define DEBUG_SETTINGS DEBUG_SETTINGS_MALYUTKA
|
||||
#endif
|
||||
|
||||
#include "\z\ace\addons\main\script_macros.hpp"
|
||||
|
5
addons/malyutka/stringtable.xml
Normal file
5
addons/malyutka/stringtable.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project name="ACE">
|
||||
<Package name="malyutka">
|
||||
</Package>
|
||||
</Project>
|
@ -2,10 +2,10 @@
|
||||
#define COMPONENT_BEAUTIFIED Missile Guidance
|
||||
#include "\z\ace\addons\main\script_mod.hpp"
|
||||
|
||||
// #define DRAW_GUIDANCE_INFO
|
||||
#define DRAW_GUIDANCE_INFO
|
||||
// #define ENABLE_PROJECTILE_CAMERA
|
||||
// #define DEBUG_MODE_FULL
|
||||
// #define DISABLE_COMPILE_CACHE
|
||||
#define DISABLE_COMPILE_CACHE
|
||||
// #define ENABLE_PERFORMANCE_COUNTERS
|
||||
|
||||
#ifdef DEBUG_ENABLED_MISSILEGUIDANCE
|
||||
|
Loading…
Reference in New Issue
Block a user