michielr
Aug 19 2009, 12:05
Hi,
This is something I wrote the other day to fix two issues I have with the ARMA 2 C-130J, a) the number of troopers that fit in the cargo hold (25) and b) the nose wheel steering on the ground.
The code below will allow you to transport 64 paras (as per the real life specs) and will enable taxiing (at least on the Utes strip).
Soldiers 26-64 will hover somewhere in the hold as there are no cargo positions (probably impossible to fix without the model).
class CfgVehicles {
class Plane; // External class reference
class C130J; // External class reference
class C130J_PARA : C130J {
displayName = "C130J Para";
transportSoldier = 64;
wheelSteeringSensitivity = 5;
};
};
Hope this is helpful for anybody!
This is something I wrote the other day to fix two issues I have with the ARMA 2 C-130J, a) the number of troopers that fit in the cargo hold (25) and b) the nose wheel steering on the ground.
The code below will allow you to transport 64 paras (as per the real life specs) and will enable taxiing (at least on the Utes strip).
Soldiers 26-64 will hover somewhere in the hold as there are no cargo positions (probably impossible to fix without the model).
class CfgVehicles {
class Plane; // External class reference
class C130J; // External class reference
class C130J_PARA : C130J {
displayName = "C130J Para";
transportSoldier = 64;
wheelSteeringSensitivity = 5;
};
};
Hope this is helpful for anybody!