Heck Posted March 11, 2006 Posted March 11, 2006 In the Korean War mod, the F9F-5 Panther fires its rockets in this sequence: left wing, right wing, left wing, right wing. The F-80-c fires all the left wing rockets first, then all the right wing, setting up heavy asymetrical loads as they're fired, unlike the Panther. I've modified both the loadout.ini, and the data.ini of the F-80 to mimick that of the F9f, ie: left wing station1, right wing station1, etc., rather than left wing station 1, left wing station 2, etc., but the F-80 still stubbornly fires all left wing first, then all right wing. Is there something I'm missing? I want the rockets on the F-80 to fire in left wing, then right wing sequence like the F9f, as well as the rockets I've added to my F-84g, but nothing I've done seems to work. I can't see anything in the ini files that would control this, except the sequence in which they're listed, which I've already changed. Can anyone help? Quote
Guest capun Posted March 11, 2006 Posted March 11, 2006 You can control them via the data ini file, look for the weapons section. You can change them via the StationGroupID or by the StationID. In this case all of the rockets are declared to be a single StationGroupID, but all of the Left wing rockets are declared sequentially with a StationID first. So when you select the rockets, StationID=7 will fire first, StationID=8 will fire next and so forth. To fix it interleave the StationID's between the left and right wings. So for example StationID=7 is a station in the left wing, StationID=8 is a station in the right wing and so forth. [LeftRocketStation01] SystemType=WEAPON_STATION StationID=7 ; First Rocket fired StationGroupID=3 StationType=EXTERNAL AttachmentPosition=-1.88,0.13,-0.37 AttachmentAngles=0.0,0.0,0.0 LoadLimit=68 AllowedWeaponClass=RCKT AttachmentType=USAF,NATO [LeftRocketStation02] SystemType=WEAPON_STATION StationID=8 ; Second Rocket fired StationGroupID=3 StationType=EXTERNAL AttachmentPosition=-2.21, 0.13,-0.34 AttachmentAngles=0.0,0.0,0.0 LoadLimit=68 AllowedWeaponClass=RCKT AttachmentType=USAF,NATO [LeftRocketStation03] SystemType=WEAPON_STATION StationID=9 StationGroupID=3 StationType=EXTERNAL AttachmentPosition=-2.54, 0.13,-0.31 AttachmentAngles=0.0,0.0,0.0 LoadLimit=300 AllowedWeaponClass=BOMB,RCKT AttachmentType=USAF,NATO [LeftRocketStation04] SystemType=WEAPON_STATION StationID=10 StationGroupID=3 StationType=EXTERNAL AttachmentPosition=-2.87, 0.13,-0.28 AttachmentAngles=0.0,0.0,0.0 LoadLimit=68 AllowedWeaponClass=RCKT AttachmentType=USAF,NATO [RightRocketStation01] SystemType=WEAPON_STATION StationID=11 ; Try declaring this to be StationID=8 StationGroupID=3 StationType=EXTERNAL AttachmentPosition= 1.88,0.13,-0.37 AttachmentAngles=0.0,0.0,0.0 LoadLimit=68 AllowedWeaponClass=RCKT AttachmentType=USAF,NATO [RightRocketStation02] SystemType=WEAPON_STATION StationID=12 StationGroupID=3 StationType=EXTERNAL AttachmentPosition= 2.21, 0.13,-0.34 AttachmentAngles=0.0,0.0,0.0 LoadLimit=68 AllowedWeaponClass=RCKT AttachmentType=USAF,NATO [RightRocketStation03] SystemType=WEAPON_STATION StationID=13 StationGroupID=3 StationType=EXTERNAL AttachmentPosition= 2.54, 0.13,-0.31 AttachmentAngles=0.0,0.0,0.0 LoadLimit=300 AllowedWeaponClass=BOMB,RCKT AttachmentType=USAF,NATO [RightRocketStation04] SystemType=WEAPON_STATION StationID=14 StationGroupID=3 StationType=EXTERNAL AttachmentPosition= 2.87, 0.13,-0.28 AttachmentAngles=0.0,0.0,0.0 LoadLimit=68 AllowedWeaponClass=RCKT AttachmentType=USAF,NATO Quote
Heck Posted March 12, 2006 Author Posted March 12, 2006 Thanks, Capun. Reading your reply, I figured out what I did wrong. Doh moment. Now, to modify that ini... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.