Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
For the J-2 orao yea there is no mods for it. I don't know how to model sadly so I replaced it with the L-39 from the AAF. Not the best looking alike plane but at least there is something available.
For the boats I don't know, I don't want the mod to have too much dependencies, CROMIL is already gonna be a big one but I'll still check it out.
Thanks for the suggestions !
You need to inherit Turrets class and it's children classes, then put a gunnerType parameter to replace the original.
Also make sure your CfgPatches are setup correctly. This is *crucial* when you inherit existing configs from other mods / vanilla addons.
class CfgPatches
{
class Serbian_M80A_Retexture
{
units[] = {"yourNew_srb_M80A_class"};
weapons[] = { };
requiredVersion = 0.100000;
requiredAddons[] = {
"A3_Data_F_Decade_Loadorder",
"rhsusf_main_loadorder",
"rhsgref_main_loadorder",
"rhssaf_main_loadorder",
"rhs_c_bmp",
"CRO_CROMIL_LoadOrder"
};
};
};
class CfgVehicles {
class Land;
class LandVehicle: Land
{
class NewTurret;
class ViewOptics;
class ViewPilot;
class ViewCargo;
class HeadLimits;
class Sounds;
class CommanderOptics: NewTurret{};
};
class Tank: LandVehicle
{
class NewTurret;
class Sounds;
class HitPoints;
class CommanderOptics;
};
class Tank_F: Tank
{
class Turrets
{
class MainTurret: NewTurret
{
class Turrets
{
class CommanderOptics;
};
class ViewGunner;
};
};
class AnimationSources;
class ViewPilot;
class ViewOptics;
class ViewCargo;
class HeadLimits;
class HitPoints: HitPoints
{
class HitHull;
class HitEngine;
class HitLTrack;
class HitRTrack;
};
class Sounds: Sounds
{
class Engine;
class Movement;
};
class EventHandlers;
class Components;
};
class APC_Tracked_02_base_F: Tank_F {
class AnimationSources;
class HitPoints: HitPoints
{
class HitHull;
class HitEngine;
class HitLTrack;
class HitRTrack;
class HitFuel;
};
class Turrets: Turrets
{
class MainTurret: MainTurret
{
class Turrets: Turrets
{
class CommanderOptics: CommanderOptics
{
};
};
};
};
};
class CRO_IFV_M80A_Base: APC_Tracked_02_base_F {
class CargoTurret;
class Turrets: Turrets
{
class MainTurret: MainTurret
{
class Turrets
{
};
};
class CommanderOptics: CommanderOptics {
};
class CargoTurret_02: CargoTurret_01
{
};
class CargoTurret_03: CargoTurret_01
{
};
class CargoTurret_04: CargoTurret_01
{
};
class CargoTurret_05: CargoTurret_04
{
};
class CargoTurret_06: CargoTurret_04
{
};
class CargoTurret_07: CargoTurret_01
{
};
};
};
class yourNew_srb_M80A_class: CRO_IFV_M80A_Base {
author="your Name";
scope = 2;
scopeCurator = 2;
accuracy = 1000;
displayName = "M80A";
side = 0;
faction="your_srb_faction";
crew = "your_srb_Crew_classname";
typicalCargo[] = {"srb_Soldier_classname"};
class Turrets: Turrets
{
class MainTurret: MainTurret
{
class Turrets
{
};
gunnerType="your_soldierCrew_classname";
};
class CommanderOptics: CommanderOptics {
gunnerType="your_srb_Crew_classname";
};
};
};
};
I did manage to change the crew of the BOV-3, BOV M86, BOV M83 and the M84A4 with the same process, but somehow with the M80A it doesn't work, I'm getting an error message. I had the same issue with the M1117 before.
I will look into it, thanks !