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

compat_vanilla - Change structure #227

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
1 change: 1 addition & 0 deletions addons/compat_vanilla/$PBOPREFIX$
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
z\ttt\addons\compat_vanilla
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,21 @@ class CfgPatches {
// Meta information for editor
name = COMPONENT_NAME;
author = ECSTRING(main,TacticalTrainingTeam);
authors[] = {"PabstMirror", "AACO", "Andx"};
url = ECSTRING(main,URL);
authors[] = {"[A] Willard", "dedmen", "[A] Fusselwurm", "Andx", "PabstMirror", "AACO",};

// Minimum compatible version. When the game's version is lower, pop-up warning will appear when launching the game. Note: was disabled on purpose some time late into Arma 2: OA.
requiredVersion = REQUIRED_VERSION;
// Required addons, used for setting load order. (CfgPatches classname NOT PBO filename!)
// When any of the addons are missing, a pop-up warning will appear when launching the game.
requiredAddons[] = {
"ttt_common",
"A3_Air_F_Heli_Heli_Transport_03",
"A3_Air_F_Heli_Heli_Transport_02",
"acre_main",
"A3_Supplies_F_Enoch_Bags"};
"A3_Supplies_F_Enoch_Bags",
"A3_Weapons_F_Acc",
"A3_Weapons_F_Mark_Acc",
"ttt_common"
};
// List of objects (CfgVehicles classes) contained in the addon. Important also for Zeus content (units and groups) unlocking.
units[] = {};
// List of weapons (CfgWeapons classes) contained in the addon.
Expand All @@ -29,4 +31,6 @@ class CfgPatches {
};
};

#include "CfgWeapons.hpp"
#include "CfgVehicles.hpp"
#include "CfgAmmo.hpp"
32 changes: 32 additions & 0 deletions addons/compat_vanilla/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Compat Vanilla

## NVG

Fügt ausgewählten Vanilla Zielfernrohren ein intergriertes Nachtsichtgerät hinzu:

- Nightforce NXS (`optic_LRPS`)
- MOS (`optic_sos`)
- Burris XTR II (`optic_DMS`)
- US Optics MR10 (`optic_AMS`)
- KAHLES Helia (`optic_khs`)

## Rucksäcke

Erhöht die Tragekapazität der Vanilla Funkrucksäcke damit zwei ACRE 117F rein passen und noch etwas Platz ist.

## Hubschrauber

Erlaubt dem Vanilla Chinook and EH302 (IDAP/FIA Transport Hubschrauber) auf dem Wasser zu schwimmen.

Betroffene Classnames:

- `Heli_Transport_03_base_F`
- `Heli_Transport_02_base_F`

## No 40mm Smoke Bounce

Verhindert das Vanilla 40mm Rauchgranaten über den Boden springen. Erhöht die Intensität von UGL und Mörser Flares.

## Maintainers

- Andx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define COMPONENT compat_vanilla_ammo
#define COMPONENT_BEAUTIFIED Compat Vanilla Ammo
#define COMPONENT compat_vanilla
#define COMPONENT_BEAUTIFIED Compat Vanilla
#include "\z\ttt\addons\main\script_mod.hpp"

#include "\z\ttt\addons\main\script_macros.hpp"
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<Project name="ttt">
<Package name="Compat_Vanilla_Weapons">
<Key ID="STR_ttt_Compat_Vanilla_Weapons_burrisDescriptionShort">
<Package name="Compat_Vanilla">
<Key ID="STR_ttt_Compat_Vanilla_burrisDescriptionShort">
<English>Burris XTR II&lt;br /&gt;magnification: 2x-4x&lt;br /&gt;NightVision</English>
<German>Burris XTR II&lt;br /&gt;Vergrößerung: 2x-4x&lt;br /&gt;Nachtsicht</German>
</Key>
<Key ID="STR_ttt_Compat_Vanilla_Weapons_kahlesDescriptionShort">
<Key ID="STR_ttt_Compat_Vanilla_kahlesDescriptionShort">
<English>KAHLES Helia&lt;br /&gt;Magnification: 4,2x-9,6x&lt;br /&gt;NightVision</English>
<German>KAHLES Helia&lt;br /&gt;Vergrößerung: 4,2x-9,6x&lt;br /&gt;Nachtsicht</German>
</Key>
<Key ID="STR_ttt_Compat_Vanilla_Weapons_mosDescriptionShort">
<Key ID="STR_ttt_Compat_Vanilla_mosDescriptionShort">
<English>Marksman Optical Sights&lt;br /&gt;Magnification: 2,5x-5x&lt;br /&gt;NightVision</English>
<German>Marksman Optical Sights&lt;br /&gt;Vergrößerung: 2,5x-5x&lt;br /&gt;Nachtsicht</German>
</Key>
<Key ID="STR_ttt_Compat_Vanilla_Weapons_nightforceDescriptionShort">
<Key ID="STR_ttt_Compat_Vanilla_nightforceDescriptionShort">
<English>Nightforce NXS&lt;br /&gt;Magnification: 5,6x-22,7x</English>
<German>Nightforce NXS&lt;br /&gt;Vergrößerung: 5,6x-22,7x</German>
</Key>
<Key ID="STR_ttt_Compat_Vanilla_Weapons_usOpticsDescriptionShort">
<Key ID="STR_ttt_Compat_Vanilla_usOpticsDescriptionShort">
<English>US Optics MR 10&lt;br /&gt;Magnification:2,9x-8,8x&lt;br /&gt;NightVision</English>
<German>US Optics MR 10&lt;br /&gt;Vergrößerung:2,9x-8,8x&lt;br /&gt;Nachtsicht</German>
</Key>
Expand Down
1 change: 0 additions & 1 deletion addons/compat_vanilla_ammo/$PBOPREFIX$

This file was deleted.

27 changes: 0 additions & 27 deletions addons/compat_vanilla_ammo/config.cpp

This file was deleted.

7 changes: 0 additions & 7 deletions addons/compat_vanilla_ammo/readme.md

This file was deleted.

1 change: 0 additions & 1 deletion addons/compat_vanilla_vehicles/$PBOPREFIX$

This file was deleted.

18 changes: 0 additions & 18 deletions addons/compat_vanilla_vehicles/readme.md

This file was deleted.

5 changes: 0 additions & 5 deletions addons/compat_vanilla_vehicles/script_component.hpp

This file was deleted.

1 change: 0 additions & 1 deletion addons/compat_vanilla_weapons/$PBOPREFIX$

This file was deleted.

26 changes: 0 additions & 26 deletions addons/compat_vanilla_weapons/config.cpp

This file was deleted.

15 changes: 0 additions & 15 deletions addons/compat_vanilla_weapons/readme.md

This file was deleted.

5 changes: 0 additions & 5 deletions addons/compat_vanilla_weapons/script_component.hpp

This file was deleted.

Loading