-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
94 additions
and
62 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#include "marines2\config_vehicles.hpp" | ||
#include "mkiv\config_vehicles.hpp" | ||
#include "odst\config_vehicles.hpp" | ||
#include "odst2\config_vehicles.hpp" | ||
#include "mkvb\config_vehicles.hpp" |
1 change: 0 additions & 1 deletion
1
src/Addons/34thPRC_ArmourStandard/data/odst2/backpacks/config_vehicles.hpp
This file was deleted.
Oops, something went wrong.
59 changes: 0 additions & 59 deletions
59
src/Addons/34thPRC_ArmourStandard/data/odst2/backpacks/s9solajumpjet/config_vehicles.hpp
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
src/Addons/34thPRC_ArmourStandard/data/odst2/config_vehicles.hpp
This file was deleted.
Oops, something went wrong.
47 changes: 47 additions & 0 deletions
47
src/Addons/34thPRC_ArmourStandard/patches/jumppacks/kjwjetpacks/config.cpp
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,47 @@ | ||
class CfgPatches | ||
{ | ||
class 34thPRC_ArmourStandard_jumppacks_kjwjetpacks | ||
{ | ||
author="34th PRC Modding Team"; | ||
units[]={}; | ||
requiredAddons[] = | ||
{ | ||
"34thPRC_Overrides", // 34th PRC Aux Mod | ||
"OPTRE_Weapons", // OPTRE | ||
"jen_jetpacks_example", // KJW's Jetpacks | ||
}; | ||
skipWhenMissingDependencies = 1; | ||
}; | ||
}; | ||
class CfgVehicles | ||
{ | ||
class jen_jetpacks_example_mk5Jetpack_nato; //KJW's Jetpacks ---> jen_jetpacks_example | ||
class 34thPRC_ArmourStandard_jumppacks_kjwjetpacks_S9BSOLAJumpJet : jen_jetpacks_example_mk5Jetpack_nato | ||
{ | ||
displayName="[34th] Series-9[B] SOLA Jump-Jet"; | ||
author="34th PRC - Vasya, Jennderqueer, KJW, & Article 2 Studios"; | ||
picture="\OPTRE_weapons\backpacks\icons\icon_jetpack_ca.paa"; | ||
scope=2; | ||
scopeArsenal=2; | ||
ace_gunbag=1; | ||
tf_hasLRradio=1; | ||
tf_range=25000; | ||
tf_encryptionCode="tf_west_radio_code"; | ||
tf_dialog="rt1523g_radio_dialog"; | ||
tf_subtype="digital_lr"; | ||
tf_dialogUpdate="call TFAR_fnc_updateLRDialogToChannel;"; | ||
sc_grapplinghook=1; | ||
model="OPTRE_Weapons\Backpacks\jetpack_on.p3d"; | ||
uniformModel="OPTRE_Weapons\Backpacks\jetpack_on.p3d"; | ||
hiddenSelections[]= | ||
{ | ||
"camo" | ||
}; | ||
hiddenSelectionsTextures[]= | ||
{ | ||
"optre_weapons\backpacks\data\jetpack_co.paa" | ||
}; | ||
maximumLoad=600; | ||
mass=20; | ||
}; | ||
}; |
47 changes: 47 additions & 0 deletions
47
src/Addons/34thPRC_ArmourStandard/patches/jumppacks/scionconflict/config.cpp
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,47 @@ | ||
class CfgPatches | ||
{ | ||
class 34thPRC_ArmourStandard_jumppacks_scionconflict | ||
{ | ||
author="34th PRC Modding Team"; | ||
units[]={}; | ||
requiredAddons[] = | ||
{ | ||
"34thPRC_Overrides", // 34th PRC Aux Mod | ||
"sc_newequipment2", // Scion Conflict | ||
"OPTRE_Weapons", // OPTRE | ||
}; | ||
skipWhenMissingDependencies = 1; | ||
}; | ||
}; | ||
class CfgVehicles | ||
{ | ||
class SC_MercerJumppack; //Scion Conflict ---> sc_newequipment2 | ||
class 34thPRC_ArmourStandard_jumppacks_scionconflict_S9SSOLAJumpJet : SC_MercerJumppack | ||
{ | ||
displayName="[34th] Series-9[S] SOLA Jump-Jet"; | ||
author="34th PRC - Vasya, Outworld Studios, & Article 2 Studios"; | ||
picture="\OPTRE_weapons\backpacks\icons\icon_jetpack_ca.paa"; | ||
scope=2; | ||
scopeArsenal=2; | ||
ace_gunbag=1; | ||
tf_hasLRradio=1; | ||
tf_range=25000; | ||
tf_encryptionCode="tf_west_radio_code"; | ||
tf_dialog="rt1523g_radio_dialog"; | ||
tf_subtype="digital_lr"; | ||
tf_dialogUpdate="call TFAR_fnc_updateLRDialogToChannel;"; | ||
sc_grapplinghook=1; | ||
model="OPTRE_Weapons\Backpacks\jetpack_on.p3d"; | ||
uniformModel="OPTRE_Weapons\Backpacks\jetpack_on.p3d"; | ||
hiddenSelections[]= | ||
{ | ||
"camo" | ||
}; | ||
hiddenSelectionsTextures[]= | ||
{ | ||
"optre_weapons\backpacks\data\jetpack_co.paa" | ||
}; | ||
maximumLoad=600; | ||
mass=20; | ||
}; | ||
}; |