Arma 3
Serbian Armed Forces
 This topic has been pinned, so it's probably important
scorboutiko  [developer] 8 Apr, 2024 @ 8:45am
Suggestions
Post here what could be added to the mod, as far as possible from within the CUP, RHS or CROMIL mods, not adding a 5GB dependency for only 1 vehicle.
Last edited by scorboutiko; 23 Jul, 2024 @ 7:56am
< >
Showing 1-13 of 13 comments
legija 11 Apr, 2024 @ 7:03am 
im from serbia and there is something you could do, so i saw that some people told you this but you could add BOV APC and you can add two more things the first one is J-2 orao one of the main plains in the SAF but i dont think that there is any mod on workshop that has that model so if you can model it great, and the last one so i suppose you know serbia is a land-locked country but we have something called "recna mornarica" that is used for patroling rivers they are very proffesional divers and a few helicopters are used there for the boats i could recommend you the pook's boats they are good looking.
scorboutiko  [developer] 11 Apr, 2024 @ 9:50am 
I'm planning to add the BOV, BVP and TAM trucks from CROMIL in a future update.
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 !
Last edited by scorboutiko; 12 Apr, 2024 @ 2:33pm
ColiGod 8 May, 2024 @ 10:47am 
Add the serbian Lazar 3 APC
veljkotankosic11 16 May, 2024 @ 7:50am 
Originally posted by scorboutiko:
I'm planning to add the BOV, BVP and TAM trucks from CROMIL in a future update.
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 !
Any updates on the work for the new vehicles?
scorboutiko  [developer] 16 May, 2024 @ 1:06pm 
I am slowly working on it, there's a lot of things I need to do and I don't have that much time lately
scorboutiko  [developer] 23 Jul, 2024 @ 8:08am 
Textures like takes a lot of time to make and are not my top priority rn. For now they will stay green, maybe in the future.
D-Man (Degman) 18 Aug, 2024 @ 6:05pm 
Originally posted by scorboutiko:
CROMIL's M80A will spawn with Croatian crew, currently unable to fix it

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";
};
};
};
};
Last edited by D-Man (Degman); 18 Aug, 2024 @ 6:07pm
scorboutiko  [developer] 19 Aug, 2024 @ 9:17am 
Thanks D-Man for your message !
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 !
D-Man (Degman) 19 Aug, 2024 @ 3:47pm 
I would need to see the config before making further comments. Everything should work so long as config was written correctly.
Add a J-22 Orao Attack Aircraft, there is probably no model of it sadly but I believe in you and your skills (Best Serbian Army mod out there!!)
scorboutiko  [developer] 14 Apr @ 5:12pm 
Thanks ! But I'm only a humble retexturer. I don't know how to do 3d models nor the whole config for a vehicle like that. Unless someone can provide me the whole thing, you'll have to cope with the L-39 and the Mig-29.
A mod for a Serbian light attack / trainer aircraft just came out, can you retexture it and put it in this mod? (With permission ofc) https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=3502686756
scorboutiko  [developer] 24 Jun @ 9:29am 
Will take a look at that
< >
Showing 1-13 of 13 comments
Per page: 1530 50