I managed to partly find and partly figure out how to change the torpedo setup, thanks to peabody who answer someone else in another thread.
It's all in the file (for example for the porpoise): ...\Data\Submarine\NSS_Porpoise\NSS_Porpoise.upc
There's a section for the stern torpedo tubes and another one for the bow torpedo tubes, like:
;------------------------------------------------------------
; BOW TORPEDO
;------------------------------------------------------------
...
[UserPlayerUnit 1.Compartment 5.WeaponSlot 3]
ID= TorpMountB3
NameDisplayable= Torpedo Tube 3
Type=NULL
AcceptedTypes= TorpedoTube
UserCustomizable=No
IDLinkBunker=BowTorpedoRoom
IDLinkWeaponIntervalDefault1= NULL, NULL, TorpedoTube21inUS, Mk14Torpedo
ExternalNodeName3D= NULL
ExternalObjectName3D= NSS_P1_Door02_FRD_anim01
ExternalDamageZoneTypeID3D= 132
...
Here the bow torpedo tube 3 will always be loaded by default with an Mk14. If I want to change this and have, by default, the Mk14 from the time of the BIG BANG until 1942-12-31 and an Mk23 from 1943-01-01 up to the Apocalypse, I change the line starting with IDLinkWeaponIntervalDefault1 with the following:
...
IDLinkWeaponIntervalDefault1= NULL, 1942-12-31, TorpedoTube21inUS, Mk14Torpedo
IDLinkWeaponIntervalDefault2= 1943-01-01, NULL, TorpedoTube21inUS, Mk23Torpedo
...
But if I want to have no torpedo at all in the tube I will use:
...
IDLinkWeaponIntervalDefault2= 1943-01-01, NULL, TorpedoTube21inUS, NULL
...
On the other hand you can change the reserve of torpedoes too, again there's a section for the stern and another for the bow torpedoes reserve; say I want all 8 torpedoes in the Porpoise reserve to be loaded by default with Mk14 until 1942-12-31, and from the next day (1943-01-01) I want 3 Mk23 and 5 Mk14, then I change the section like this:
...
[UserPlayerUnit 1.Compartment 5.Bunker 1] ; Forward Torpedo Room
ID=BowTorpedoRoom
Capacity=8
IDLinkAmmunitionIntervalDefault1= NULL, 1942-12-31, Mk14Torpedo, 8
IDLinkAmmunitionIntervalDefault2= 1943-01-01, NULL, Mk23Torpedo, 3, Mk14Torpedo, 5
...
If I find out about the crew, the damage and the equipment I'll post it here.
|