..I wanted to configure the weapons to heavy phasers, plus i wanted to configure quantum torpedoes used on the sovereign....
Just open the .py file up with notepad, if all your doing is just adjusting the yield for the phasers and adding quantum torpedoes used by the Sovereign class. It's a good way to get better aqainted with the context of a typicle .py file. To adjust the phaser yields look for this line within each phaser entries....
DorsalPhaser3.SetMaxDamage(2100.000000)
..change the value within the parentheses to what ever you like(do that for all the phasers)for the torpedoe armaments look for something that looks like this within the Sovereign class' .py file....
#################################################
Torpedoes = App.TorpedoSystemProperty_Create("Torpedoes")
Torpedoes.SetMaxCondition(5000.000000)
Torpedoes.SetCritical(0)
Torpedoes.SetTargetable(0)
Torpedoes.SetPrimary(1)
Torpedoes.SetPosition(0.000000, 0.100000, -0.300000)
Torpedoes.SetPosition2D(82.000000, 64.000000)
Torpedoes.SetRepairComplexity(2.000000)
Torpedoes.SetDisabledPercentage(0.500000)
Torpedoes.SetRadius(0.200000)
Torpedoes.SetNormalPowerPerSecond(100.000000)
Torpedoes.SetWeaponSystemType(Torpedoes.WST_TORPEDO)
Torpedoes.SetSingleFire(0)
Torpedoes.SetAimedWeapon(1)
kFiringChainString = App.TGString()
kFiringChainString.SetString("")
Torpedoes.SetFiringChainString(kFiringChainString)
Torpedoes.SetMaxTorpedoes(0, 300)
Torpedoes.SetTorpedoScript(0, "Tactical.Projectiles.PhotonTorpedo1")
Torpedoes.SetMaxTorpedoes(1, 200)
Torpedoes.SetTorpedoScript(1, "Tactical.Projectiles.QuantumTorpedo1")
Torpedoes.SetMaxTorpedoes(2, 0)
Torpedoes.SetTorpedoScript(2, "Tactical.Projectiles.Tricobalt1")
Torpedoes.SetNumAmmoTypes(3)
App.g_kModelPropertyManager.RegisterLocalTemplate(Torpedoes)
#################################################
....copy and paste only the name of the quantum torpedoe over to your ships' corresponding .py file torpedoe armament section. If you feel it's eazier to use programs to edit your .py files then read back a couple of posts and do what Nero and Nebula had been saying. ;)