Starsector 0.98a is out! (03/27/25)
package data.scripts.plugins;import com.fs.starfarer.api.Global;import com.fs.starfarer.api.impl.campaign.OfficerLevelupPluginImpl;public class OfficerLevelupPluginImpl implements OfficerLevelupPlugin { public int pickLevelupSkills (int level) { return 3; }}
Look at com.fs.starfarer.api.impl.campaign.OfficerLevelupPluginImpl (in starfarer_api.zip), pickLevelupSkills method. Change this so the list it returns has three entries instead of only two.(For compiling this into a mod that the game can reference, look up one of the tutorials on the forum.)