forked from Bob-Murphy/A3-Antistasi-1.4
-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3142 from official-antistasi-community/unstable
unstable to master for 3.5 release
- Loading branch information
Showing
220 changed files
with
261,528 additions
and
1,039 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
//3CB - CfgWeapons.hpp | ||
|
||
class CfgWeapons | ||
{ | ||
class UK3CB_CZ550; | ||
class a3a_UK3CB_CZ550_8mm : UK3CB_CZ550 | ||
{ | ||
BaseWeapon = "a3a_UK3CB_CZ550_8mm"; | ||
descriptionshort = "Hunting Rifle <br/>Caliber: 8×57mm IS"; | ||
displayname = "CZ-550 Lux"; | ||
magazines[] = {"rhsgref_5Rnd_792x57_kar98k"}; | ||
magazineWell[] = {"CBA_792x57_K98"}; | ||
recoil = "recoil_dmr_01"; | ||
}; | ||
}; | ||
|
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 |
---|---|---|
|
@@ -21,3 +21,4 @@ class CfgPatches | |
}; | ||
|
||
#include "CfgVehicles.hpp" | ||
#include "CfgWeapons.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,44 @@ | ||
//IslaDuala3 - config.cpp | ||
|
||
#include "..\script_component.hpp" | ||
|
||
|
||
class CfgPatches | ||
{ | ||
class PATCHNAME(IslaDuala3) | ||
{ | ||
name = COMPONENT_NAME; | ||
units[] = {}; | ||
weapons[] = {}; | ||
requiredVersion = REQUIRED_VERSION; | ||
requiredAddons[] = {"A3_Data_F_AoW_Loadorder","A3_Map_IslaDuala3"}; | ||
skipWhenMissingDependencies = 1; | ||
author = AUTHOR; | ||
authors[] = { AUTHORS }; | ||
authorUrl = ""; | ||
VERSION_CONFIG; | ||
}; | ||
}; | ||
class CfgWorlds { | ||
class Stratis; | ||
class IslaDuala3 : Stratis { | ||
class Names { | ||
class a3a_Obmeya { | ||
angle = 0; | ||
name = "Noord Obmeya"; | ||
position[] = {5056,5151}; | ||
radiusA = 300; | ||
radiusB = 200; | ||
type = "NameCity"; | ||
}; | ||
class imalia { | ||
angle = 0; // never seen this non-zero | ||
name = "Imalia"; | ||
position[] = {8942,620.74}; // 2d map coords | ||
radiusA = 200; // I think these are supposed to be outer/inner radius but Antistasi uses them as X/Y. Probably a bug. | ||
radiusB = 150; | ||
type = "NameVillage"; // NameCity also works, I don't think Antistasi cares | ||
}; | ||
}; | ||
}; | ||
}; |
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
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,105 @@ | ||
//Vanilla - ifv.hpp | ||
|
||
//Marshall | ||
class B_APC_Wheeled_01_base_F; | ||
class B_APC_Wheeled_01_cannon_F : B_APC_Wheeled_01_base_F { class EventHandlers; }; | ||
class a3a_B_APC_Wheeled_01_cannon_F : B_APC_Wheeled_01_cannon_F | ||
{ | ||
animationList[] = {"showBags",0.5,"showCamonetHull",0,"showCamonetTurret",0,"showSLATHull",1,"showSLATTurret",1}; | ||
class EventHandlers : EventHandlers | ||
{ | ||
init = "if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle;};"; | ||
}; | ||
}; | ||
class B_T_APC_Wheeled_01_cannon_F : B_APC_Wheeled_01_cannon_F {}; | ||
class a3a_B_T_APC_Wheeled_01_cannon_F : B_T_APC_Wheeled_01_cannon_F | ||
{ | ||
animationList[] = {"showBags",0.5,"showCamonetHull",0,"showCamonetTurret",0,"showSLATHull",1,"showSLATTurret",1}; | ||
class EventHandlers : EventHandlers | ||
{ | ||
init = "if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle;};"; | ||
}; | ||
}; | ||
|
||
//Rhino | ||
class AFV_Wheeled_01_base_F; | ||
class B_AFV_Wheeled_01_cannon_F : AFV_Wheeled_01_base_F { class EventHandlers; }; | ||
class a3a_AFV_Wheeled_01_cannon_F : B_AFV_Wheeled_01_cannon_F | ||
{ | ||
animationList[] = {"showCamonetHull",0,"showCamonetCannon",0,"showCamonetTurret",0,"showSLATHull",1}; | ||
// Already has initVehicle EH | ||
}; | ||
class B_T_AFV_Wheeled_01_cannon_F : AFV_Wheeled_01_base_F { class EventHandlers; }; | ||
class a3a_T_AFV_Wheeled_01_cannon_F : B_T_AFV_Wheeled_01_cannon_F | ||
{ | ||
animationList[] = {"showCamonetHull",0,"showCamonetCannon",0,"showCamonetTurret",0,"showSLATHull",1}; | ||
// Already has initVehicle EH | ||
}; | ||
|
||
//Gorgon | ||
class I_APC_Wheeled_03_base_F; | ||
class I_APC_Wheeled_03_cannon_F : I_APC_Wheeled_03_base_F { class EventHandlers; } | ||
class a3a_APC_Wheeled_03_cannon_F : I_APC_Wheeled_03_cannon_F | ||
{ | ||
animationList[] = {"showCamonetHull",0,"showBags",0.3,"showBags2",0.3,"showTools",0.3,"showSLATHull",1}; | ||
class EventHandlers : EventHandlers | ||
{ | ||
init = "if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle;};"; | ||
}; | ||
}; | ||
class a3a_APC_Wheeled_03_cannon_blufor_F : a3a_APC_Wheeled_03_cannon_F | ||
{ | ||
textureList[] = {}; | ||
hiddenSelectionsTextures[] = {"a3\armor_f_gamma\APC_Wheeled_03\data\APC_Wheeled_03_Ext_CO.paa","a3\armor_f_gamma\APC_Wheeled_03\data\APC_Wheeled_03_Ext2_CO.paa","a3\armor_f_gamma\APC_Wheeled_03\data\RCWS30_CO.paa","a3\armor_f_gamma\APC_Wheeled_03\data\APC_Wheeled_03_Ext_alpha_CO.paa","a3\armor_f\data\camonet_aaf_fia_desert_co.paa","a3\armor_f\data\cage_sand_co.paa"}; | ||
}; | ||
|
||
//Mora | ||
class I_APC_tracked_03_base_F; | ||
class I_APC_tracked_03_cannon_F : I_APC_tracked_03_base_F { class EventHandlers; }; | ||
class a3a_APC_tracked_03_cannon_F : I_APC_tracked_03_cannon_F | ||
{ | ||
animationList[] = {"showBags",0.3,"showBags2",0.3,"showCamonetHull",0,"showCamonetTurret",0,"showTools",0.3,"showSLATHull",1,"showSLATTurret",1}; | ||
class EventHandlers : EventHandlers | ||
{ | ||
init = "if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle;};"; | ||
}; | ||
}; | ||
class I_E_APC_tracked_03_base_F; | ||
class I_E_APC_tracked_03_cannon_F : I_E_APC_tracked_03_base_F { class EventHandlers; }; | ||
class a3a_E_APC_tracked_03_cannon_F : I_E_APC_tracked_03_cannon_F | ||
{ | ||
animationList[] = {"showBags",0.3,"showBags2",0.3,"showCamonetHull",0,"showCamonetTurret",0,"showTools",0.3,"showSLATHull",1,"showSLATTurret",1}; | ||
class EventHandlers : EventHandlers | ||
{ | ||
init = "if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle;};"; | ||
}; | ||
}; | ||
//Marid | ||
class APC_Wheeled_02_base_v2_F; | ||
class O_APC_Wheeled_02_rcws_v2_F : APC_Wheeled_02_base_v2_F { class EventHandlers; }; | ||
class a3a_APC_Wheeled_02_rcws_v2_F : O_APC_Wheeled_02_rcws_v2_F | ||
{ | ||
animationList[] = {"showBags",0.2,"showCanisters",0.2,"showTools",0.2,"showCamonetHull",0,"showSLATHull",1}; | ||
// Already has initVehicle EH | ||
}; | ||
class O_T_APC_Wheeled_02_rcws_v2_ghex_F : APC_Wheeled_02_base_v2_F { class EventHandlers; }; | ||
class a3a_T_APC_Wheeled_02_rcws_v2_F : O_T_APC_Wheeled_02_rcws_v2_ghex_F | ||
{ | ||
animationList[] = {"showBags",0.2,"showCanisters",0.2,"showTools",0.2,"showCamonetHull",0,"showSLATHull",1}; | ||
// Already has initVehicle EH | ||
}; | ||
|
||
//Kamysh | ||
class O_APC_Tracked_02_base_F; | ||
class O_APC_Tracked_02_cannon_F : O_APC_Tracked_02_base_F { class EventHandlers; }; | ||
class a3a_APC_Tracked_02_cannon_F : O_APC_Tracked_02_cannon_F | ||
{ | ||
animationList[] = {"showTracks",0.5,"showCamonetHull",0,"showBags",0.5,"showSLATHull",1}; | ||
// Already has initVehicle EH | ||
}; | ||
class O_T_APC_Tracked_02_cannon_ghex_F : O_APC_Tracked_02_cannon_F {}; | ||
class a3a_T_APC_Tracked_02_cannon_F : O_T_APC_Tracked_02_cannon_ghex_F | ||
{ | ||
animationList[] = {"showTracks",0.5,"showCamonetHull",0,"showBags",0.5,"showSLATHull",1}; | ||
// Already has initVehicle EH | ||
}; |
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,94 @@ | ||
//WS - ws_ifv.hpp | ||
|
||
//Marshall | ||
//Ion | ||
|
||
class APC_Wheeled_01_base_F; | ||
class APC_Wheeled_01_command_base_lxWS : APC_Wheeled_01_base_F { class EventHandlers; }; // also used for NATO | ||
class B_ION_APC_Wheeled_01_command_lxWS: APC_Wheeled_01_command_base_lxWS {}; | ||
class a3a_ION_APC_Wheeled_01_command_lxWS : B_ION_APC_Wheeled_01_command_lxWS | ||
{ | ||
animationList[] = {"showBags",0.5,"showCamonetHull",0,"showCamonetTurret",0,"showSLATHull",1,"showSLATTurret",1}; | ||
class EventHandlers : EventHandlers | ||
{ | ||
init = "if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle;};"; | ||
}; | ||
}; | ||
class B_APC_Wheeled_01_cannon_lxWS; | ||
class B_ION_APC_Wheeled_01_cannon_lxWS: B_APC_Wheeled_01_cannon_lxWS { class EventHandlers; }; | ||
class a3a_ION_APC_Wheeled_01_cannon_lxWS : B_ION_APC_Wheeled_01_cannon_lxWS | ||
{ | ||
scope = 2; | ||
animationList[] = {"showBags",0.5,"showCamonetHull",0,"showCamonetTurret",0,"showSLATHull",1,"showSLATTurret",1}; | ||
class EventHandlers : EventHandlers | ||
{ | ||
init = "if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle;};"; | ||
}; | ||
}; | ||
class B_D_APC_Wheeled_01_atgm_lxWS; | ||
class a3a_ION_APC_Wheeled_01_atgm : B_D_APC_Wheeled_01_atgm_lxWS { | ||
side = 1; | ||
crew = "B_ION_Soldier_lxWS"; | ||
faction = "BLU_ION_lxWS"; | ||
textureList[] = {"ION_BLACK", 1}; | ||
hiddenSelectionsTextures[] = {"lxws\vehicles_f_lxws\data\APC_Wheeled_01\APC_Wheeled_ion_base_CO.paa","lxws\vehicles_f_lxws\data\APC_Wheeled_01\apc_wheeled_ion_adds_co.paa","lxws\vehicles_f_lxws\data\APC_Wheeled_01\apc_wheeled_ion_tows_co.paa","a3\armor_f\Data\camonet_AAF_stripe_desert_CO.paa","lxws\vehicles_f_lxws\data\APC_Wheeled_01\cage_black_CO.paa","lxws\vehicles_f_lxws\data\APC_Wheeled_01\APC_Wheeled_ion_lxws_CO.paa"}; | ||
}; | ||
|
||
//NATO | ||
class a3a_APC_Wheeled_01_command_lxWS : APC_Wheeled_01_command_base_lxWS | ||
{ | ||
animationList[] = {"showBags",0.5,"showCamonetHull",0,"showCamonetTurret",0,"showSLATHull",1,"showSLATTurret",1}; | ||
class EventHandlers : EventHandlers | ||
{ | ||
init = "if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle;};"; | ||
}; | ||
}; | ||
class B_T_APC_Wheeled_01_command_lxWS : APC_Wheeled_01_command_base_lxWS {}; | ||
class a3a_T_APC_Wheeled_01_command_lxWS : B_T_APC_Wheeled_01_command_lxWS | ||
{ | ||
animationList[] = {"showBags",0.5,"showCamonetHull",0,"showCamonetTurret",0,"showSLATHull",1,"showSLATTurret",1}; | ||
class EventHandlers : EventHandlers | ||
{ | ||
init = "if (local (_this select 0)) then {[(_this select 0), """", [], false] call bis_fnc_initVehicle;};"; | ||
}; | ||
}; | ||
|
||
//Iskatel/Kamysh | ||
//Arid | ||
class O_APC_Tracked_02_30mm_lxWS; | ||
class a3a_APC_Tracked_02_30mm_lxWS : O_APC_Tracked_02_30mm_lxWS | ||
{ | ||
animationList[] = {"showTracks",0.5,"showCamonetHull",0,"showBags",0.5,"showSLATHull",1}; | ||
// Has initVehicle EH already | ||
}; | ||
//Tropical | ||
class O_T_APC_Tracked_02_30mm_lxWS; | ||
class a3a_T_APC_Tracked_02_30mm_lxWS : O_T_APC_Tracked_02_30mm_lxWS | ||
{ | ||
animationList[] = {"showTracks",0.5,"showCamonetHull",0,"showBags",0.5,"showSLATHull",1}; | ||
// Has initVehicle EH already | ||
}; | ||
//SFIA | ||
class O_SFIA_APC_Tracked_02_30mm_lxWS; | ||
class a3a_SFIA_APC_Tracked_02_30mm_lxWS : O_SFIA_APC_Tracked_02_30mm_lxWS | ||
{ | ||
animationList[] = {"showTracks",0.5,"showCamonetHull",0,"showBags",0.5,"showSLATHull",1}; | ||
// Has initVehicle EH already | ||
}; | ||
class O_SFIA_APC_Tracked_02_cannon_lxWS; | ||
class a3a_SFIA_APC_Tracked_02_cannon_lxWS : O_SFIA_APC_Tracked_02_cannon_lxWS | ||
{ | ||
animationList[] = {"showTracks",0.5,"showCamonetHull",0,"showBags",0.5,"showSLATHull",1}; | ||
// Has initVehicle EH already | ||
}; | ||
//ION | ||
class a3a_ION_APC_Tracked_02_30mm : O_APC_Tracked_02_30mm_lxWS | ||
{ | ||
side = 1; | ||
crew = "B_ION_Soldier_lxWS"; | ||
faction = "BLU_ION_lxWS"; | ||
animationList[] = {"showTracks",1,"showCamonetHull",0,"showBags",0.2,"showSLATHull",1}; | ||
textureList[] = {"Grey", 1}; | ||
hiddenSelectionsTextures[] = {"lxWS\vehicles_1_f_lxws\APC_Tracked_02\data\APC_Tracked_02_ext_01_black_CO.paa","lxWS\vehicles_1_f_lxws\APC_Tracked_02\data\APC_Tracked_02_ext_02_black_CO.paa","lxWS\vehicles_1_f_lxws\APC_Tracked_02\data\APC_Tracked_02_ext_03_black_CO.paa","lxWS\vehicles_1_f_lxws\APC_Tracked_02\data\APC_Tracked_02_30mm_black_co.paa","A3\Armor_F\Data\camonet_CSAT_Stripe_Desert_CO.paa","lxWS\vehicles_1_f_lxws\APC_Tracked_02\data\cage_black_CO.paa"}; | ||
// Has initVehicle EH already | ||
}; |
Oops, something went wrong.