I want to start a new game with the backer starting pilots,instead of the bland original ones. Is it possible?
"StartingMechWarriors" : [
"pilot_sim_starter_glitch",
"pilot_sim_starter_behemoth",
"pilot_sim_starter_dekker",
"pilot_sim_starter_medusa"
],
"StartingMechWarriorPortraits" : [
"PortraitPreset_glitch",
"PortraitPreset_behemoth",
"PortraitPreset_dekker",
"PortraitPreset_medusa"
],
Well, first off... if you're talking about career mode, there does not appear to be any way to specify which pilots you will have at the start... they are randomly generated, and that's that (short of modifying the code anyway, which is presumably a lot more work than you're willing/able to do).
For campaign mode, it looks like it should be pretty straightforward... in [install directory]\BattleTech_Data\StreamingAssets\data\simGameConstants\SimGameConstants.json it has the following section:
Code:"StartingMechWarriors" : [ "pilot_sim_starter_glitch", "pilot_sim_starter_behemoth", "pilot_sim_starter_dekker", "pilot_sim_starter_medusa" ], "StartingMechWarriorPortraits" : [ "PortraitPreset_glitch", "PortraitPreset_behemoth", "PortraitPreset_dekker", "PortraitPreset_medusa" ],
The list of MechWarriors uses the IDs that you can find in [...]\data\pilot. Unfortunately, the image to use is not just taken from the pilot definition, so you have to specify the portrait to use for each one... and it doesn't appear to allow custom portraits except via a weird work-around. See this thread for more information:
https://forum.paradoxplaza.com/foru...w-to-use-custom-portraits-for-pilots.1140929/
Edit: Oh, and basically the same question came up on this thread:
https://forum.paradoxplaza.com/forum/index.php?threads/mod-the-starting-lance.1141334/
I think I covered the main points, but just in case there's a detail that I forgot to mention you can look through that as well.
Well, let's say for the purposes of an example that you want to replace Glitch with Eck.I see,but I still don't quite understand about portraits. Do I just replace the name with the desired pilots,or is there any thing that I should tweak before that?