Skip to content

Commit

Permalink
Split into patches
Browse files Browse the repository at this point in the history
  • Loading branch information
Lupus590 committed Feb 5, 2025
1 parent b6a2d3a commit c479b4b
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 62 deletions.
1 change: 0 additions & 1 deletion src/Addons/34thPRC_ArmourStandard/data/config_vehicles.hpp
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"

This file was deleted.

This file was deleted.

This file was deleted.

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;
};
};
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;
};
};

0 comments on commit c479b4b

Please sign in to comment.