Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add XEH to new classes #399

Merged
merged 3 commits into from
Jul 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions addons/xeh/CfgVehicles.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -247,4 +247,34 @@ class CfgVehicles {
init = "if (local (_this select 0)) then {[(_this select 0), """", false, false] call bis_fnc_initVehicle;};";
};
};

// APEX
class Plane_Base_F;
class Plane_Civil_01_base_F: Plane_Base_F {
XEH_ENABLED;
};

class B_CTRG_Soldier_3_F;
class B_CTRG_Miller_F: B_CTRG_Soldier_3_F {
XEH_ENABLED;
};

class Land_PowerLine_01_pole_junction_F: PowerLines_Small_base_F {
XEH_ENABLED;
};
class Land_PowerLine_01_pole_lamp_F: PowerLines_Small_base_F {
XEH_ENABLED;
};
class Land_PowerLine_01_pole_lamp_off_F: PowerLines_Small_base_F {
XEH_ENABLED;
};
class Land_PowerLine_01_pole_small_F: PowerLines_Small_base_F {
XEH_ENABLED;
};
class Land_PowerLine_01_pole_tall_F: PowerLines_Small_base_F {
XEH_ENABLED;
};
class Land_PowerLine_01_pole_transformer_F: PowerLines_Small_base_F {
XEH_ENABLED;
};
};
2 changes: 1 addition & 1 deletion addons/xeh/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class CfgPatches {
url = "$STR_CBA_URL";
units[] = {};
weapons[] = {};
requiredAddons[] = {"A3_Data_F","A3_Characters_F","A3_Air_F","A3_Armor_F","A3_Boat_F","A3_Soft_F","A3_Air_F_Heli_Heli_Transport_04"};
requiredAddons[] = {"A3_Data_F","A3_Characters_F","A3_Air_F","A3_Armor_F","A3_Boat_F","A3_Soft_F","A3_Air_F_Heli_Heli_Transport_04","A3_Characters_F_exp"};
requiredVersion = 0.1;
version = "4.0.0"; // Due to older mod versions requiring > 3,3,3 etc
versionStr = "4.0.0";
Expand Down