Jump to content
Sign in to follow this  
b00ce

PBO dependancy issue

Recommended Posts

I'm making a custom texture pack for my unit, which includes some custom weapons for the aforementioned vehicles. Right now I have weapon and vehicle configs in separate .pbo files, for the sake of my sanity. The only problem is that when I start ArmA with the addon, it doesn't recognize the weapons addon and throws an error on startup due to the dependency.

I'm a newbie to configs, but I've narrowed it down to CfgMagazines (I think), mostly because Notepad++ doesn't display it the same as anything else (Class names are displayed in orange, not black, and its not grouped together properly.) and if I remove it CfgWeapons behaves normally. (Its not grouped properly either.) I know I did something wrong somewhere, but it eludes me. :(

CfgMagazines:

class CfgMagazines {
class 40Rnd_80mm;
class 60Rnd_CMFlareMagazine;
class 12Rnd_Vikhr_KA50;

class 128Rnd_KamovFlare_TFB : 60Rnd_CMFlareMagazine {
	count=128;
};

class 12Rnd_Vikhr_TFB : 12Rnd_Vikhr_KA50
	displayname="9A4172 Vikhr";
	displaynameshort="Vikhr";
	ammo="Vikhr_TFB";
	count=12;
};

class 40Rnd_S8T_TFB : 40Rnd_80mm {
	displayname="S-8T (AT)";
	displaynameshort="S-8T";
	ammo="S8_T_TFB";
	count=40;
};
class 20Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=20;
};
class 10Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=10;
};
class 4Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=4;
};
class 2Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=2;
};

class 40Rnd_S8KOM_TFB : 40Rnd_80mm {
	displayname="S-8KOM (HE)";
	displaynameshort="S-8KOM";
	ammo="S8_KOM_TFB";
	count=40;
};
class 20Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=20;
};
class 10Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=10;
};
class 4Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=4;
};
class 2Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=2;
};

class 40Rnd_S8KOR_TFB : 40Rnd_80mm {
	displayname="S-8Kor (Laser Guided)";
	displaynameshort="S-8Kor";
	ammo="S8_Kor_TFB";
	count=40;
};
class 20Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=20;
};
class 10Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=10;
};
class 4Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=4;
};
class 2Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=2;
};

class 40Rnd_S8TSM_TFB : 40Rnd_80mm {
	displayname="S-8TsM (Smoke)";
	displaynameshort="S-8TsM";
	ammo="S8_TSM_TFB";
	count=40;
};
class 20Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=20;
};
class 10Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=10;
};
class 4Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=4;
};
class 2Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=2;
};

class 40Rnd_S8DM_TFB : 40Rnd_80mm {
	displayname="S-8DM (Thermobaric)";
	displaynameshort="S-8DM";
	ammo="S8_DM_TFB";
	count=40;
};
class 20Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=20;
};
class 10Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=10;
};
class 4Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=4;
};
class 2Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=2;
};
};

Here's the whole config (Including CfgMagazines), if you need it.

//S-8Kor (Laser guided)
//S-8T (AT)
//S-8KOM (HE)
//S-8TsM (Smoke)
//S-8O (Ilum)
//S-8DM (Thermobaric)

class CfgPatches {
class tfb_vehicle_weapons {
	units[] = {};
	weapons[] = {};
	requiredVersion = 1.0;
	requiredAddons[] = {};
};
};

class CfgAmmo {
class R_80mm_HE;
class R_S8T_AT;
class M_Hellfire_AT;
class M_Vikhr_AT;

class Vikhr_TFB : M_Vikhr_AT {
	initTime=0;
	thrustTime=5;
	thrust=612;
	maxSpeed=612;
	irlock=1;
	laserlock=1;
	airlock=1;
	maneuvrability = 22;
	manualcontrol = 1;
	maxcontrolrange = 11500;
	sideairfriction = 0.2;
	timetolive = 45;
	tracklead = 1;
	trackoversteer = 1;
	weaponlocksystem = "16 + 4";
};

class S8_T_TFB : R_S8T_AT {
	initTime=0; 
	thrustTime=1;
	thrust=610;
	maxSpeed = 610;
};

class S8_KOM_TFB : R_80mm_HE {
	initTime=0; 
	thrustTime=1;
	thrust=470;
	maxSpeed = 470;
};

class S8_Kor_TFB : M_Hellfire_AT {
	initTime=0; 
	thrustTime=1;
	thrust=610;
	maxSpeed = 610;
	cost = 80;
	fusedistance = 30;
	hit = 430;
	indirecthit = 30;
	indirecthitrange = 5;
	sideairfriction = 0.15;
	whistledist = 10;
};

class S_8TSM : S8_T_TFB {
	explosive = 0;
	hit = 0;
	indirecthit = 0;
	indirecthitrange = 0;
	cratereffects = "";
	explosioneffects = "WPExplosion";
};

class S_8DM_TFB : S8_T_TFB {
	ace_thermobaric = 1;
	cratereffects = "ACE_FAE_Crater";
	explosioneffects = "ACE_FAE_Explosion";
	hit = 200;
	indirecthit = 80;
	indirecthitrange = 15;
	thrust=400;
	maxSpeed = 590;
};

class S_8OM_TFB : S8_T_TFB {

};
};

class CfgMagazines {
class 40Rnd_80mm;
class 60Rnd_CMFlareMagazine;
class 12Rnd_Vikhr_KA50;

class 128Rnd_KamovFlare_TFB : 60Rnd_CMFlareMagazine {
	count=128;
};

class 12Rnd_Vikhr_TFB : 12Rnd_Vikhr_KA50
	displayname="9A4172 Vikhr";
	displaynameshort="Vikhr";
	ammo="Vikhr_TFB";
	count=12;
};

class 40Rnd_S8T_TFB : 40Rnd_80mm {
	displayname="S-8T (AT)";
	displaynameshort="S-8T";
	ammo="S8_T_TFB";
	count=40;
};
class 20Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=20;
};
class 10Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=10;
};
class 4Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=4;
};
class 2Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=2;
};

class 40Rnd_S8KOM_TFB : 40Rnd_80mm {
	displayname="S-8KOM (HE)";
	displaynameshort="S-8KOM";
	ammo="S8_KOM_TFB";
	count=40;
};
class 20Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=20;
};
class 10Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=10;
};
class 4Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=4;
};
class 2Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=2;
};

class 40Rnd_S8KOR_TFB : 40Rnd_80mm {
	displayname="S-8Kor (Laser Guided)";
	displaynameshort="S-8Kor";
	ammo="S8_Kor_TFB";
	count=40;
};
class 20Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=20;
};
class 10Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=10;
};
class 4Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=4;
};
class 2Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=2;
};

class 40Rnd_S8TSM_TFB : 40Rnd_80mm {
	displayname="S-8TsM (Smoke)";
	displaynameshort="S-8TsM";
	ammo="S8_TSM_TFB";
	count=40;
};
class 20Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=20;
};
class 10Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=10;
};
class 4Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=4;
};
class 2Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=2;
};

class 40Rnd_S8DM_TFB : 40Rnd_80mm {
	displayname="S-8DM (Thermobaric)";
	displaynameshort="S-8DM";
	ammo="S8_DM_TFB";
	count=40;
};
class 20Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=20;
};
class 10Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=10;
};
class 4Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=4;
};
class 2Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=2;
};
};

class CfgWeapons {
class S8Launcher;
class CMFlareLauncher;
class RocketPods;

class TFB_Kamov_Flare : CMFlareLauncher {
	magazines[] = {"128Rnd_KamovFlare_TFB"};
	reloadtime=0.1;
	magazinereloadtime=0.1;
};

class TFB_S8Launcher : S8Launcher {
	displayname="B8V20 Rocket Pod";
	displaynameshort="B8V20";
	magazines[] = {"40Rnd_S8T_TFB","20Rnd_S8T_TFB","10Rnd_S8T_TFB","4Rnd_S8T_TFB","2Rnd_S8T_TFB","40Rnd_S8KOR_TFB","20Rnd_S8KOR_TFB","10Rnd_S8KOR_TFB","4Rnd_S8KOR_TFB","2Rnd_S8KOR_TFB","40Rnd_S8TSM_TFB","20Rnd_S8TSM_TFB","10Rnd_S8TSM_TFB","4Rnd_S8TSM_TFB","2Rnd_S8TSM_TFB","40Rnd_S8DM_TFB","20Rnd_S8DM_TFB","10Rnd_S8DM_TFB","4Rnd_S8DM_TFB","2Rnd_S8DM_TFB","40Rnd_S8OM_TFB","20Rnd_S8OM_TFB","10Rnd_S8OM_TFB","4Rnd_S8OM_TFB","2Rnd_S8OM_TFB"};
	modes[] = {"S8_Single","S8_Burst"};
	class S8_Burst : RocketPods {
		autofire = 1;
		burst = 2;
		displayname = "Ripple 2)";
		reloadtime = 0.04;
		dispersion = 0.005
	};
	class S8_Single : S8_Burst {
		displayname = "(Single)";
		reloadtime = 0.2
		burst = 1
	};
};
};

Any other critiques are much appreciated. Thanks for the help in advance.

Share this post


Link to post
Share on other sites

After a quick check:

   class 12Rnd_Vikhr_TFB : 12Rnd_Vikhr_KA50
       displayname="9A4172 Vikhr";
       displaynameshort="Vikhr";
       ammo="Vikhr_TFB";
       count=12;
   };

Has a missing bracket:

 class 12Rnd_Vikhr_TFB : 12Rnd_Vikhr_KA50
 [color=Red]{[/color]
   displayname="9A4172 Vikhr";
   displaynameshort="Vikhr";
   ammo="Vikhr_TFB";
   count=12;
 };

In your requiredaddons line you should add "CAWeapons" as requirement, and also "CAWeapons_E" if you inherit from OA Weapons.

Edit:

In class TFB_S8Launcher you have several lines with no ; at the end

Fixed complete config:

//S-8Kor (Laser guided)
//S-8T (AT)
//S-8KOM (HE)
//S-8TsM (Smoke)
//S-8O (Ilum)
//S-8DM (Thermobaric)

class CfgPatches
{
 class tfb_vehicle_weapons
 {
   units[] = {};
   weapons[] = {};
   requiredVersion = 1.0;
   requiredAddons[] = {"CAWeapons"};
 };
};

class CfgAmmo
{
 class R_80mm_HE;
 class R_S8T_AT;
 class M_Hellfire_AT;
 class M_Vikhr_AT;
 class Vikhr_TFB : M_Vikhr_AT
 {
   initTime=0;
   thrustTime=5;
   thrust=612;
   maxSpeed=612;
   irlock=1;
   laserlock=1;
   airlock=1;
   maneuvrability = 22;
   manualcontrol = 1;
   maxcontrolrange = 11500;
   sideairfriction = 0.2;
   timetolive = 45;
   tracklead = 1;
   trackoversteer = 1;
   weaponlocksystem = "16 + 4";
 };
 class S8_T_TFB : R_S8T_AT
 {
   initTime=0;
   thrustTime=1;
   thrust=610;
   maxSpeed = 610;
 };
 class S8_KOM_TFB : R_80mm_HE
 {
   initTime=0;
   thrustTime=1;
   thrust=470;
   maxSpeed = 470;
 };
 class S8_Kor_TFB : M_Hellfire_AT
 {
   initTime=0;
   thrustTime=1;
   thrust=610;
   maxSpeed = 610;
   cost = 80;
   fusedistance = 30;
   hit = 430;
   indirecthit = 30;
   indirecthitrange = 5;
   sideairfriction = 0.15;
   whistledist = 10;
 };
 class S_8TSM : S8_T_TFB
 {
   explosive = 0;
   hit = 0;
   indirecthit = 0;
   indirecthitrange = 0;
   cratereffects = "";
   explosioneffects = "WPExplosion";
 };
 class S_8DM_TFB : S8_T_TFB
 {
   ace_thermobaric = 1;
   cratereffects = "ACE_FAE_Crater";
   explosioneffects = "ACE_FAE_Explosion";
   hit = 200;
   indirecthit = 80;
   indirecthitrange = 15;
   thrust=400;
   maxSpeed = 590;
 };
 class S_8OM_TFB : S8_T_TFB {};
};

class CfgMagazines
{
 class 40Rnd_80mm;
 class 60Rnd_CMFlareMagazine;
 class 12Rnd_Vikhr_KA50;
 class 128Rnd_KamovFlare_TFB : 60Rnd_CMFlareMagazine
 {
   count=128;
 };
 class 12Rnd_Vikhr_TFB : 12Rnd_Vikhr_KA50
 {
   displayname="9A4172 Vikhr";
   displaynameshort="Vikhr";
   ammo="Vikhr_TFB";
   count=12;
 };
 class 40Rnd_S8T_TFB : 40Rnd_80mm
 {
   displayname="S-8T (AT)";
   displaynameshort="S-8T";
   ammo="S8_T_TFB";
   count=40;
 };
 class 20Rnd_S8T_TFB : 40Rnd_S8T_TFB
 {
   count=20;
 };
 class 10Rnd_S8T_TFB : 40Rnd_S8T_TFB
 {
   count=10;
 };
 class 4Rnd_S8T_TFB : 40Rnd_S8T_TFB
 {
   count=4;
 };
 class 2Rnd_S8T_TFB : 40Rnd_S8T_TFB
 {
   count=2;
 };
 class 40Rnd_S8KOM_TFB : 40Rnd_80mm
 {
   displayname="S-8KOM (HE)";
   displaynameshort="S-8KOM";
   ammo="S8_KOM_TFB";
   count=40;
 };
 class 20Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB
 {
   count=20;
 };
 class 10Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB
 {
   count=10;
 };
 class 4Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB
 {
   count=4;
 };
 class 2Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB
 {
   count=2;
 };
 class 40Rnd_S8KOR_TFB : 40Rnd_80mm
 {
   displayname="S-8Kor (Laser Guided)";
   displaynameshort="S-8Kor";
   ammo="S8_Kor_TFB";
   count=40;
 };
 class 20Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB
 {
   count=20;
 };
 class 10Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB
 {
   count=10;
 };
 class 4Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB
 {
   count=4;
 };
 class 2Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB
 {
   count=2;
 };
 class 40Rnd_S8TSM_TFB : 40Rnd_80mm
 {
   displayname="S-8TsM (Smoke)";
   displaynameshort="S-8TsM";
   ammo="S8_TSM_TFB";
   count=40;
 };
 class 20Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB
 {
   count=20;
 };
 class 10Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB
 {
   count=10;
 };
 class 4Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB
 {
   count=4;
 };
 class 2Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB
 {
   count=2;
 };
 class 40Rnd_S8DM_TFB : 40Rnd_80mm
 {
   displayname="S-8DM (Thermobaric)";
   displaynameshort="S-8DM";
   ammo="S8_DM_TFB";
   count=40;
 };
 class 20Rnd_S8DM_TFB : 40Rnd_S8DM_TFB
 {
   count=20;
 };
 class 10Rnd_S8DM_TFB : 40Rnd_S8DM_TFB
 {
   count=10;
 };
 class 4Rnd_S8DM_TFB : 40Rnd_S8DM_TFB
 {
   count=4;
 };
 class 2Rnd_S8DM_TFB : 40Rnd_S8DM_TFB
 {
   count=2;
 };
};

class CfgWeapons
{
 class S8Launcher;
 class CMFlareLauncher;
 class RocketPods;
 class TFB_Kamov_Flare : CMFlareLauncher
 {
   magazines[] = {"128Rnd_KamovFlare_TFB"};
   reloadtime=0.1;
   magazinereloadtime=0.1;
 };
 class TFB_S8Launcher : S8Launcher
 {
   displayname="B8V20 Rocket Pod";
   displaynameshort="B8V20";
   magazines[] = {"40Rnd_S8T_TFB","20Rnd_S8T_TFB","10Rnd_S8T_TFB","4Rnd_S8T_TFB","2Rnd_S8T_TFB","40Rnd_S8KOR_TFB","20Rnd_S8KOR_TFB","10Rnd_S8KOR_TFB","4Rnd_S8KOR_TFB","2Rnd_S8KOR_TFB","40Rnd_S8TSM_TFB","20Rnd_S8TSM_TFB","10Rnd_S8TSM_TFB","4Rnd_S8TSM_TFB","2Rnd_S8TSM_TFB","40Rnd_S8DM_TFB","20Rnd_S8DM_TFB","10Rnd_S8DM_TFB","4Rnd_S8DM_TFB","2Rnd_S8DM_TFB","40Rnd_S8OM_TFB","20Rnd_S8OM_TFB","10Rnd_S8OM_TFB","4Rnd_S8OM_TFB","2Rnd_S8OM_TFB"};
   modes[] = {"S8_Single","S8_Burst"};
   class S8_Burst : RocketPods
   {
     autofire = 1;
     burst = 2;
     displayname = "Ripple 2)";
     reloadtime = 0.04;
     dispersion = 0.005;
   };
   class S8_Single : S8_Burst
   {
     displayname = "(Single)";
     reloadtime = 0.2;
     burst = 1;
   };
 };
};

Edited by W0lle

Share this post


Link to post
Share on other sites

Sweet, thanks a lot! :D

Edit:

Just tested it, no joy. It still throws the error.

Edited by b00ce

Share this post


Link to post
Share on other sites
you have at least post the error m8.
Addon 'tfb_vehicle' requires addon 'tfb_vehicle_weapons'

I'll scour my RPT for anything of interest. :o

Edit:

Here's my RPT, I don't know why there are random bits about buildings and roads, my addon doesn't touch them.



=====================================================================
== D:\Program files (x86)\Steam\steamapps\common\arma 2 operation arrowhead\ArmA2OA.exe
== "D:\Program files (x86)\Steam\steamapps\common\arma 2 operation arrowhead\ArmA2OA.exe" "-mod=D:\Program files (x86)\Steam\steamapps\common\arma 2;Expansion;ca;@aliens" -nosplash -world=empty -showScriptErrors -maxMem=2047 -cpuCount=2 
=====================================================================
Exe timestamp: 2011/04/10 13:19:37
Current time:  2011/11/09 00:16:56

Version 1.59.79384
Item str_disp_server_control listed twice
Conflicting addon Arma2_Ka52 in 'ca\air2\ka52\', previous definition in 'tfb_vehicle\ka_52\'
Warning Message: Addon 'tfb_vehicle' requires addon 'tfb_vehicle_weapons'
Updating base class ->M16A2, by ca\weapons\config.bin/cfgWeapons/M16A2GL/
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.scope'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.model'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.simulation'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.accuracy'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.camouflage'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.audible'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.displayName'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.textSingular'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.speechSingular'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.textPlural'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.speechPlural'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.weaponSlots'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.spotableNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.spotableDarkNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.spotableNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.visibleNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.visibleNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.side'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.destrType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.picture'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.portrait'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.icon'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.cost'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.fuelCapacity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.armor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.damageResistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.maxSpeed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.limitedSpeedCoef'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.secondaryExplosion'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.sensitivity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.sensitivityEar'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.brakeDistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.precision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.formationX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.formationZ'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.formationTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.steerAheadSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.steerAheadPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.ViewPilot'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.initFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.minFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxFov'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.HeadLimits'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.predictTurnSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.predictTurnPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.minFireTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.enableWatch'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.enableRadio'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.transportFuel'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.transportRepair'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.transportAmmo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.transportMaxWeapons'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.transportMaxMagazines'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.transportMaxBackpacks'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.lockDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.incommingMisslieDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.TransportWeapons'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.TransportMagazines'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.alwaysTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.irTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.irScanToEyeFactor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.irScanRangeMin'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.irScanRangeMax'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.irScanGround'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.nightVision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.laserScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.laserTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.nvTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.artilleryTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.artilleryScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.commanderCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.driverCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.gunnerCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.radarType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.attendant'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.engineer'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.preferRoads'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.unitInfoType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.hideUnitInfo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundEngine'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundEnviron'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundDammage'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundLandCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundWaterCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundGetIn'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundGetOut'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundServo'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundEngineOnInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundEngineOffInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundEngineOnExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundEngineOffExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundLocked'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.soundIncommingMissile'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.SoundEnvironExt'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.SoundGear'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.SoundEquipment'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.weapons'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.magazines'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.threat'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.type'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.reversed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.HeadAimDown'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.scope'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.model'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.simulation'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.accuracy'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.camouflage'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.audible'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.displayName'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.textSingular'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.speechSingular'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.textPlural'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.speechPlural'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.weaponSlots'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.spotableNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.spotableDarkNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.spotableNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.visibleNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.visibleNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.side'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.destrType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.picture'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.portrait'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.icon'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.cost'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.fuelCapacity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.armor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.damageResistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.maxSpeed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.limitedSpeedCoef'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.secondaryExplosion'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.sensitivity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.sensitivityEar'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.brakeDistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.precision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.formationX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.formationZ'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.formationTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.steerAheadSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.steerAheadPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.ViewPilot'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.initFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.minFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxFov'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.HeadLimits'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.predictTurnSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.predictTurnPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.minFireTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.enableWatch'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.enableRadio'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.transportFuel'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.transportRepair'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.transportAmmo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.transportMaxWeapons'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.transportMaxMagazines'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.transportMaxBackpacks'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.lockDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.incommingMisslieDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.TransportWeapons'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.TransportMagazines'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.alwaysTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.irTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.irScanToEyeFactor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.irScanRangeMin'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.irScanRangeMax'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.irScanGround'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.nightVision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.laserScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.laserTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.nvTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.artilleryTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.artilleryScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.commanderCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.driverCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.gunnerCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.radarType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.attendant'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.engineer'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.preferRoads'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.unitInfoType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.hideUnitInfo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundEngine'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundEnviron'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundDammage'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundLandCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundWaterCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundGetIn'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundGetOut'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundServo'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundEngineOnInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundEngineOffInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundEngineOnExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundEngineOffExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundLocked'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.soundIncommingMissile'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.SoundEnvironExt'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.SoundGear'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.SoundEquipment'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.weapons'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.magazines'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.threat'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.type'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.reversed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.HeadAimDown'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.scope'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.scope'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/TFB_UH60/Turrets/Turrets.primaryGunner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/TFB_UH60/Turrets/Turrets.Turrets'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/TFB_UH60/Turrets/Turrets.primaryObserver'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/TFB_UH60/Turrets/Turrets.Turrets'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.scope'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.scope'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/TFB_UH60/Turrets/Turrets.primaryGunner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/TFB_UH60/Turrets/Turrets.Turrets'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/TFB_UH60/Turrets/Turrets.primaryObserver'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/TFB_UH60/Turrets/Turrets.Turrets'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/Turrets.scope'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MainTurret.scope'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgWeapons.TFB_S8Launcher'.
Warning Message: No entry '.scope'.
Warning Message: '/' is not a value
Warning Message: Error: creating weapon TFB_S8Launcher with scope=private
Warning Message: No entry '.displayName'.
Warning Message: '/' is not a value
Warning Message: No entry '.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry '.type'.
Warning Message: '/' is not a value
Warning Message: No entry '.picture'.
Warning Message: '/' is not a value
Warning Message: No entry '.Library'.
Warning Message: No entry '.libTextDesc'.
Warning Message: '/' is not a value
Warning Message: No entry '.model'.
Warning Message: '/' is not a value
Warning Message: No entry '.simulation'.
Warning Message: '/' is not a value
Warning Message: No entry '.fireLightDuration'.
Warning Message: '/' is not a value
Warning Message: No entry '.fireLightIntensity'.
Warning Message: '/' is not a value
Warning Message: No entry '.weaponLockDelay'.
Warning Message: '/' is not a value
Warning Message: No entry '.weaponLockSystem'.
Warning Message: '/' is not a value
Warning Message: No entry '.cmImmunity'.
Warning Message: '/' is not a value
Warning Message: No entry '.lockingTargetSound'.
Warning Message: Size: '/' not an array
Warning Message: No entry '.lockedTargetSound'.
Warning Message: Size: '/' not an array
Warning Message: No entry '.muzzles'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgWeapons.TFB_Kamov_Flare'.
Warning Message: No entry '.scope'.
Warning Message: '/' is not a value
Warning Message: Error: creating weapon TFB_Kamov_Flare with scope=private
Warning Message: No entry '.displayName'.
Warning Message: '/' is not a value
Warning Message: No entry '.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry '.type'.
Warning Message: '/' is not a value
Warning Message: No entry '.picture'.
Warning Message: '/' is not a value
Warning Message: No entry '.Library'.
Warning Message: No entry '.libTextDesc'.
Warning Message: '/' is not a value
Warning Message: No entry '.model'.
Warning Message: '/' is not a value
Warning Message: No entry '.simulation'.
Warning Message: '/' is not a value
Warning Message: No entry '.fireLightDuration'.
Warning Message: '/' is not a value
Warning Message: No entry '.fireLightIntensity'.
Warning Message: '/' is not a value
Warning Message: No entry '.weaponLockDelay'.
Warning Message: '/' is not a value
Warning Message: No entry '.weaponLockSystem'.
Warning Message: '/' is not a value
Warning Message: No entry '.cmImmunity'.
Warning Message: '/' is not a value
Warning Message: No entry '.lockingTargetSound'.
Warning Message: Size: '/' not an array
Warning Message: No entry '.lockedTargetSound'.
Warning Message: Size: '/' not an array
Warning Message: No entry '.muzzles'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgMagazines.40Rnd_S8KOM_TFB'.
Warning Message: No entry '.picture'.
Warning Message: '/' is not a value
Warning Message: No entry '.scope'.
Warning Message: '/' is not a value
Warning Message: Error: creating magazine 40Rnd_S8KOM_TFB with scope=private
Warning Message: No entry '.displayName'.
Warning Message: '/' is not a value
Warning Message: No entry '.displayNameShort'.
Warning Message: '/' is not a value
Warning Message: No entry '.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry '.Library'.
Warning Message: No entry '.libTextDesc'.
Warning Message: '/' is not a value
Warning Message: No entry '.type'.
Warning Message: '/' is not a value
Warning Message: No entry '.count'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxLeadSpeed'.
Warning Message: '/' is not a value
Warning Message: No entry '.initSpeed'.
Warning Message: '/' is not a value
Warning Message: No entry '.reloadAction'.
Warning Message: '/' is not a value
Warning Message: No entry '.modelSpecial'.
Warning Message: '/' is not a value
Warning Message: No entry '.ammo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgMagazines.128Rnd_KamovFlare_TFB'.
Warning Message: No entry '.picture'.
Warning Message: '/' is not a value
Warning Message: No entry '.scope'.
Warning Message: '/' is not a value
Warning Message: Error: creating magazine 128Rnd_KamovFlare_TFB with scope=private
Warning Message: No entry '.displayName'.
Warning Message: '/' is not a value
Warning Message: No entry '.displayNameShort'.
Warning Message: '/' is not a value
Warning Message: No entry '.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry '.Library'.
Warning Message: No entry '.libTextDesc'.
Warning Message: '/' is not a value
Warning Message: No entry '.type'.
Warning Message: '/' is not a value
Warning Message: No entry '.count'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxLeadSpeed'.
Warning Message: '/' is not a value
Warning Message: No entry '.initSpeed'.
Warning Message: '/' is not a value
Warning Message: No entry '.reloadAction'.
Warning Message: '/' is not a value
Warning Message: No entry '.modelSpecial'.
Warning Message: '/' is not a value
Warning Message: No entry '.ammo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgWeapons.ACE_2A42'.
Warning Message: No entry '.scope'.
Warning Message: '/' is not a value
Warning Message: Error: creating weapon ACE_2A42 with scope=private
Warning Message: No entry '.displayName'.
Warning Message: '/' is not a value
Warning Message: No entry '.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry '.type'.
Warning Message: '/' is not a value
Warning Message: No entry '.picture'.
Warning Message: '/' is not a value
Warning Message: No entry '.Library'.
Warning Message: No entry '.libTextDesc'.
Warning Message: '/' is not a value
Warning Message: No entry '.model'.
Warning Message: '/' is not a value
Warning Message: No entry '.simulation'.
Warning Message: '/' is not a value
Warning Message: No entry '.fireLightDuration'.
Warning Message: '/' is not a value
Warning Message: No entry '.fireLightIntensity'.
Warning Message: '/' is not a value
Warning Message: No entry '.weaponLockDelay'.
Warning Message: '/' is not a value
Warning Message: No entry '.weaponLockSystem'.
Warning Message: '/' is not a value
Warning Message: No entry '.cmImmunity'.
Warning Message: '/' is not a value
Warning Message: No entry '.lockingTargetSound'.
Warning Message: Size: '/' not an array
Warning Message: No entry '.lockedTargetSound'.
Warning Message: Size: '/' not an array
Warning Message: No entry '.muzzles'.
Warning Message: Size: '/' not an array
No owner
No owner
No owner
No owner
No owner
No owner
Warning: looped for animation: ca\wheeled\data\anim\uaz_cargo01_v0.rtm differs (looped now 0)! MoveName: kia_uaz_cargo02
Warning: looped for animation: ca\wheeled\data\anim\uaz_cargo01_v0.rtm differs (looped now 1)! MoveName: uaz_cargo02
Warning: Road selection asf3 has wrong name format
Warning: Road selection mud has wrong name format
Warning: Road selection asf3 has wrong name format
Warning: Road selection mud has wrong name format
Warning: Road selection asf3 has wrong name format
Warning: Road selection mud has wrong name format
Warning: Road selection asf3 has wrong name format
Warning: Road selection mud has wrong name format
class HitPoints::Hitglass not found in Land_Mil_House_dam
Error: Hitpoint Hitglass not found in the model ca\structures\mil\mil_house_dam.p3d (original model ca\structures\mil\mil_house.p3d)
Warning: Road selection asf3 has wrong name format
Warning: Road selection mud has wrong name format

Here's my vehicle config, there's obviously something wrong with it as well, I'm going to try to update some interior textures, namely the Ka-52's instruments, the MH-60's dash and "Americanizing" the Kamaz.

class CfgPatches {
class tfb_vehicle {
	Units[] = {};
	weapons[] = {};
	requiredVersion = 1.0;
	requiredAddons[] = {"CAAir","CAAir2","CAWheeled2","tfb_vehicle_weapons"};
};
};

class CfgFactionClasses {
class TaskForceBlackJack {
	displayName = "Task Force Blackjack";
	priority = 1;
	side = "TWest";
};
};

class CfgVehicleClasses {
class tfb_cars {
	displayName = "TFB Cars";
};
class tfb_support {
	displayName = "TFB Support";
};
class tfb_air {
	displayName = "TFB Air";
};
};

class CfgVehicles {
class Ka52;
class MH60S;
class Kamaz;
class KamazOpen;
class WarfareSupplyTruck_RU;
class KamazRefuel;
class KamazRepair;
class Turrets;
class MainTurret;

class TFB_MTV_Open : KamazOpen {
	side=1;
	faction="TaskForceBlackJack";
	vehicleClass = "tfb_cars";
	crew = "US_Soldier_Crew_EP1";
	displayName="[=TFB=] MTV (Open)";
	model="tfb_vehicle\cars\kamaz\Kamaz_Open.p3d";
	hiddenSelections[] = {"kab"};
	hiddenSelectionsTextures[] = {"\tfb_vehicle\cars\kamaz\kamaz_kab_co.paa"};
	fuelCapacity=300;
	maxSpeed=115;
	transportMaxMagazines = 500;
	transportMaxWeapons = 100;

};

class TFB_MTV_Covered : Kamaz {
	side=1;
	faction="TaskForceBlackJack";
	vehicleClass = "tfb_cars";
	crew = "US_Soldier_Crew_EP1";
	displayName="[=TFB=] MTV (Covered)";
	model="tfb_vehicle\cars\kamaz\Kamaz.p3d";
	hiddenSelections[] = {"kab"};
	hiddenSelectionsTextures[] = {"\tfb_vehicle\cars\kamaz\kamaz_kab_co.paa"};
	fuelCapacity=300;
	maxSpeed=115;
	transportMaxMagazines = 500;
	transportMaxWeapons = 100;
};

class TFB_MTV_Ammo : WarfareSupplyTruck_RU {
	side=1;
	faction="TaskForceBlackJack";
	vehicleClass = "tfb_support";
	crew = "US_Soldier_Crew_EP1";
	displayName="[=TFB=] MTV (Ammo)";
	model="tfb_vehicle\cars\kamaz\Kamaz_Reammo.p3d";
	hiddenSelections[] = {"kab"};
	hiddenSelectionsTextures[] = {"\tfb_vehicle\cars\kamaz\kamaz_kab_co.paa"};
	fuelCapacity=300;
	maxSpeed=115;
	transportMaxMagazines = 500;
	transportMaxWeapons = 2000;
	transportAmmo = 300000;
};

class TFB_MTV_Fuel : KamazRefuel {
	side=1;
	faction="TaskForceBlackJack";
	vehicleClass = "tfb_support";
	crew = "US_Soldier_Crew_EP1";
	displayName="[=TFB=] MTV (Fuel)";
	model="tfb_vehicle\cars\kamaz\Kamaz_Refuel.p3d";
	hiddenSelections[] = {"kab", "fuel"};
	hiddenSelectionsTextures[] = {"\tfb_vehicle\cars\kamaz\kamaz_kab_co.paa", "\tfb_vehicle\cars\kamaz\kamaz_fuel_co.paa"};
	fuelCapacity=300;
	maxSpeed=115;
	transportMaxMagazines = 500;
	transportMaxWeapons = 100;
	transportFuel = 3000;
};

class TFB_MTV_Repair : KamazRepair {
	side=1;
	faction="TaskForceBlackJack";
	vehicleClass = "tfb_support";
	crew = "US_Soldier_Crew_EP1";
	displayName="[=TFB=] MTV (Repair)";
	model="tfb_vehicle\cars\kamaz\Kamaz_Repair.p3d";
	hiddenSelections[] = {"kab"};
	hiddenSelectionsTextures[] = {"\tfb_vehicle\cars\kamaz\kamaz_kab_co.paa"};
	fuelCapacity=300;
	maxSpeed=115;
	transportMaxMagazines = 500;
	transportMaxWeapons = 100;
	transportRepair = 200000000;
};

class TFB_Kamov : Ka52 {
	side=1;
	faction="TaskForceBlackJack";
	vehicleClass= "tfb_air";
	crew= "US_Soldier_Pilot_EP1";
	displayName="[=TFB=] Ka52";
	model="tfb_vehicle\ka_52\ka52.p3d";
	hiddenSelections[]={"01","02"};
	hiddenSelectionsTextures[]={"\tfb_vehicle\ka_52\ka52_01_co.paa","\tfb_vehicle\ka_52\ka52_02_co.paa"};
	maxSpeed=315;
	fuelCapacity=1000;
	transportMaxMagazines=40;
	transportMaxWeapons=10;
	weapons[] ={"TFB_S8Launcher","TFB_Kamov_Flare"};
	magazines[] ={"40Rnd_S8KOM_TFB","128Rnd_KamovFlare_TFB"};
	soundincommingmissile[]={"tfb_vehicle\sounds\launch.ogg", 0.000316228, 4};
	soundlocked[]={"tfb_vehicle\sounds\kamov\threat.ogg", 0.000316228, 2};
	sounddammage[] = {"tfb_vehicle\sounds\warning.ogg", 0.562341, 1};
};

class TFB_UH60 : MH60S {
	side=1;
	faction="TaskForceBlackJack";
	VehicleClass="tfb_air";
	crew="US_Soldier_Pilot_EP1";
	DisplayName="[=TFB=] MH-60";
	model="tfb_vehicle\uh60\MH_60mg.p3d";
	hiddenselections[]={};
	hiddenselectionstextures[]={};
	MaxSpeed=315;
	FuelCapacity=1000;
	TransportMaxMagazines=500;
	TransportMaxWeapons=100;
	weapons[]={"TFB_Kamov_Flare"};
	magazines[]={"128Rnd_KamovFlare_TFB"};
	soundincommingmissile[]={"tfb_vehicle\sounds\launch.ogg", 0.000316228, 4};
	soundlocked[]={"tfb_vehicle\sounds\threat.ogg", 0.000316228, 2};
	sounddammage[] = {"tfb_vehicle\sounds\warning.ogg", 0.562341, 1};
};
};

Edit:

Got rid of all the optics stuff to reflect the current state of things. I'll deal with it when I get everything else working.:rolleyes:

Edited by b00ce

Share this post


Link to post
Share on other sites

And my weapons & ammo confing. Updated as of 3 seconds ago.

//S-8Kor (Laser guided)
//S-8T (AT)
//S-8KOM (HE)
//S-8TsM (Smoke)
//S-8O (Ilum)
//S-8DM (Thermobaric)

class CfgPatches {
class tfb_vehicle_weapons {
	units[] = {};
	weapons[] = {};
	requiredVersion = 1.0;
	requiredAddons[] = {"CAAir","CAAir2","CAWeapons","CAWeapons_E"};
};
};

class CfgAmmo {
class R_80mm_HE;
class R_S8T_AT;
class M_Hellfire_AT;
class M_Vikhr_AT;

class Vikhr_TFB : M_Vikhr_AT {
	initTime=0;
	thrustTime=5;
	thrust=612;
	maxSpeed=612;
	irlock=1;
	laserlock=1;
	airlock=1;
	maneuvrability = 22;
	manualcontrol = 1;
	maxcontrolrange = 11500;
	sideairfriction = 0.2;
	timetolive = 45;
	tracklead = 1;
	trackoversteer = 1;
	weaponlocksystem = "16 + 4";
};

class S8_T_TFB : R_S8T_AT {
	initTime=0; 
	thrustTime=1;
	thrust=610;
	maxSpeed = 610;
};

class S8_KOM_TFB : R_80mm_HE {
	initTime=0; 
	thrustTime=1;
	thrust=470;
	maxSpeed = 470;
};

class S8_Kor_TFB : M_Hellfire_AT {
	initTime=0; 
	thrustTime=1;
	thrust=610;
	maxSpeed = 610;
	cost = 80;
	fusedistance = 30;
	hit = 430;
	indirecthit = 30;
	indirecthitrange = 5;
	sideairfriction = 0.15;
	whistledist = 10;
};

class S_8TSM : S8_T_TFB {
	explosive = 0;
	hit = 0;
	indirecthit = 0;
	indirecthitrange = 0;
	cratereffects = "";
	explosioneffects = "WPExplosion";
};

class S_8DM_TFB : S8_T_TFB {
	ace_thermobaric = 1;
	cratereffects = "ACE_FAE_Crater";
	explosioneffects = "ACE_FAE_Explosion";
	hit = 200;
	indirecthit = 80;
	indirecthitrange = 15;
	thrust=400;
	maxSpeed = 590;
};

class S_8OM_TFB : S8_T_TFB {

};
};

class CfgMagazines {
class 40Rnd_80mm;
class 60Rnd_CMFlareMagazine;
class 12Rnd_Vikhr_KA50;

class 128Rnd_KamovFlare_TFB : 60Rnd_CMFlareMagazine {
	count=128;
};

class 12Rnd_Vikhr_TFB : 12Rnd_Vikhr_KA50 {
	displayname="9A4172 Vikhr";
	displaynameshort="Vikhr";
	ammo="Vikhr_TFB";
	count=12;
};

class 40Rnd_S8T_TFB : 40Rnd_80mm {
	displayname="S-8T (AT)";
	displaynameshort="S-8T";
	ammo="S8_T_TFB";
	count=40;
};
class 20Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=20;
};
class 10Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=10;
};
class 4Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=4;
};
class 2Rnd_S8T_TFB : 40Rnd_S8T_TFB {
	count=2;
};

class 40Rnd_S8KOM_TFB : 40Rnd_80mm {
	displayname="S-8KOM (HE)";
	displaynameshort="S-8KOM";
	ammo="S8_KOM_TFB";
	count=40;
};
class 20Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=20;
};
class 10Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=10;
};
class 4Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=4;
};
class 2Rnd_S8KOM_TFB : 40Rnd_S8KOM_TFB {
	count=2;
};

class 40Rnd_S8KOR_TFB : 40Rnd_80mm {
	displayname="S-8Kor (Laser Guided)";
	displaynameshort="S-8Kor";
	ammo="S8_Kor_TFB";
	count=40;
};
class 20Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=20;
};
class 10Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=10;
};
class 4Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=4;
};
class 2Rnd_S8KOR_TFB : 40Rnd_S8KOR_TFB {
	count=2;
};

class 40Rnd_S8TSM_TFB : 40Rnd_80mm {
	displayname="S-8TsM (Smoke)";
	displaynameshort="S-8TsM";
	ammo="S8_TSM_TFB";
	count=40;
};
class 20Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=20;
};
class 10Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=10;
};
class 4Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=4;
};
class 2Rnd_S8TSM_TFB : 40Rnd_S8TSM_TFB {
	count=2;
};

class 40Rnd_S8DM_TFB : 40Rnd_80mm {
	displayname="S-8DM (Thermobaric)";
	displaynameshort="S-8DM";
	ammo="S8_DM_TFB";
	count=40;
};
class 20Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=20;
};
class 10Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=10;
};
class 4Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=4;
};
class 2Rnd_S8DM_TFB : 40Rnd_S8DM_TFB {
	count=2;
};
};

class CfgWeapons {
class S8Launcher;
class CMFlareLauncher;
class RocketPods;
class Mode_SemiAuto;

class TFB_Kamov_Flare : CMFlareLauncher {
	magazines[] = {"128Rnd_KamovFlare_TFB"};
	reloadtime=0.1;
	magazinereloadtime=0.1;
	sound[]={"tfb_vehicle\sounds\flare.ogg", 0.316228, 1, 300};
	class Single : Mode_SemiAuto {
		burst = 1;
		maxrange = 200;
		minrange = 0;
		multiplier = 2;
		reloadtime = 0.1;
		showtoplayer = 1;
		sound[] = {"tfb_vehicle\sounds\flare.ogg", 0.316228, 1, 300};
		soundburst = 0;
	};
	class Burst : Single {
		burst=2
	};
};

class TFB_S8Launcher : S8Launcher {
	displayname="B8V20 Rocket Pod";
	displaynameshort="B8V20";
	magazines[] = {"40Rnd_S8T_TFB","20Rnd_S8T_TFB","10Rnd_S8T_TFB","4Rnd_S8T_TFB","2Rnd_S8T_TFB","40Rnd_S8KOR_TFB","20Rnd_S8KOR_TFB","10Rnd_S8KOR_TFB","4Rnd_S8KOR_TFB","2Rnd_S8KOR_TFB","40Rnd_S8TSM_TFB","20Rnd_S8TSM_TFB","10Rnd_S8TSM_TFB","4Rnd_S8TSM_TFB","2Rnd_S8TSM_TFB","40Rnd_S8DM_TFB","20Rnd_S8DM_TFB","10Rnd_S8DM_TFB","4Rnd_S8DM_TFB","2Rnd_S8DM_TFB","40Rnd_S8OM_TFB","20Rnd_S8OM_TFB","10Rnd_S8OM_TFB","4Rnd_S8OM_TFB","2Rnd_S8OM_TFB"};
	modes[] = {"S8_Single","S8_Burst"};
	class S8_Burst : RocketPods {
		autofire = 1;
		burst = 2;
		displayname = "Ripple 2)";
		reloadtime = 0.04;
		dispersion = 0.005;
	};
	class S8_Single : S8_Burst {
		displayname = "(Single)";
		reloadtime = 0.2;
		burst = 1;
	};
};
};

Ungh... I wish I knew what I was doing. :(

Share this post


Link to post
Share on other sites
please consider posting the config of tfb_vehicle

Way ahead of you. ;) Look again.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×