forked from acemod/ACE3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Explosives/Realistic Names - Improve CfgVehicles explosives naming (a…
…cemod#10200) * Improve explosives naming * Move all ACE explosives into compat * Update CfgMagazines.hpp
- Loading branch information
Showing
6 changed files
with
77 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
class CfgMagazines { | ||
class CA_Magazine; | ||
class ACE_SatchelCharge_Remote_Mag_Throwable: CA_Magazine { | ||
displayName = CSTRING(SatchelChargeThrowable_Name); | ||
}; | ||
class ACE_DemoCharge_Remote_Mag_Throwable: ACE_SatchelCharge_Remote_Mag_Throwable { | ||
displayName = CSTRING(DemoChargeThrowable_Name); | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
class CfgVehicles { | ||
class ACE_Explosives_Place; | ||
class ACE_Explosives_Place_DemoCharge: ACE_Explosives_Place { | ||
displayName = CSTRING(DemoCharge_Name); | ||
}; | ||
class ACE_Explosives_Place_APERSBoundingMine: ACE_Explosives_Place { | ||
displayName = CSTRING(APERSBoundingMine_Name); | ||
}; | ||
class ACE_Explosives_Place_APERSMine: ACE_Explosives_Place { | ||
displayName = CSTRING(APERSMine_Name); | ||
}; | ||
class ACE_Explosives_Place_APERSTripwireMine: ACE_Explosives_Place { | ||
displayName = CSTRING(APERSTripwireMine_Name); | ||
}; | ||
class ACE_Explosives_Place_ATMine: ACE_Explosives_Place { | ||
displayName = CSTRING(ATMine_Name); | ||
}; | ||
class ACE_Explosives_Place_Claymore: ACE_Explosives_Place { | ||
displayName = CSTRING(Claymore_Name); | ||
}; | ||
class ACE_Explosives_Place_SatchelCharge: ACE_Explosives_Place { | ||
displayName = CSTRING(SatchelCharge_Name); | ||
}; | ||
|
||
// Orange DLC | ||
class ACE_Explosives_Place_SLAM: ACE_Explosives_Place { | ||
displayName = CSTRING(SLAM_Name); | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#include "script_component.hpp" | ||
|
||
class CfgPatches { | ||
class SUBADDON { | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = {QUOTE(ADDON), "ace_explosives"}; | ||
skipWhenMissingDependencies = 1; | ||
author = ECSTRING(common,ACETeam); | ||
authors[] = {}; | ||
url = ECSTRING(main,URL); | ||
VERSION_CONFIG; | ||
|
||
// this prevents any patched class from requiring this addon | ||
addonRootClass = "A3_Characters_F"; | ||
}; | ||
}; | ||
|
||
#include "CfgMagazines.hpp" | ||
#include "CfgVehicles.hpp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#define SUBCOMPONENT explosives | ||
#define SUBCOMPONENT_BEAUTIFIED Explosives | ||
#include "..\script_component.hpp" |