Fractal Softworks Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Starsector 0.97a is out! (02/02/24); New blog post: Simulator Enhancements (03/13/24)

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Alluvian

Pages: [1] 2 3 4
1
Mods / Re: [0.97a] Bird's Collection v1.5.2
« on: March 22, 2024, 07:23:09 PM »
To get the Fays Phase ships to spawn (in the market, and more regularly in fleets) some minor changes need to be made to: default_ship_roles.json

Specifically, adding sections for phaseSmall through phaseCapital would be needed.

Example:
Spoiler
"phaseSmall":{
      "bc_phasefrigate1_Overdriven": 10,
      "bc_phasefrigate2_Attack": 10,
      "bc_phasefrigate2_Strike": 10,
      "bc_phasefrigate3_Overdriven": 5,
      "bc_phasefrigate3_Strike": 10,
      "bc_phasefrigate4_Overdriven": 4,
      "bc_phasefrigate4_Assault": 10,
   },
   "phaseMedium":{
      "bc_phasedestroyer1_Overdriven": 8,
      "bc_phasedestroyer2_Strike": 8,
      "bc_phasedestroyer3_Overdriven": 6,
      "bc_phasedestroyer3_Standard": 6,
   },
   "phaseLarge":{
      "bc_phasecruiser1_Standard": 10,
      "bc_phasecruiser1_Overdriven": 10,
      "bc_phasecruiser2_Beam": 10,
      "bc_phasecruiser2_Overdriven": 10,
      "bc_phasecruiser3_Strike": 10,
      "bc_phasecruiser3_Overdriven": 10,
   },
   "phaseCapital":{
      "bc_phaseparagon_Standard":8,      
   },
[close]

2
Mods / Re: [0.97a] Junk Yard Dogs - V 2.9.3 - 03/10/24
« on: March 15, 2024, 12:20:22 PM »
Horary!! someone finally gets the Jim Croce reference! It's been three years and the mod is full of references to his songs (including the aforementioned bounties) and you are the first to mention at least one of them. It frankly made my day. :)
I got a good chuckle out of it myself. I'll not spoil myself by looking through the files, and see what else I come across naturally.

My favorite ship thus far is the Industrious. I am very fond of heavy industry / industrial ships of this sort; both your mod and a number of the ships from Vayra. Also chucking rocks at the enemy is quite satisfying.

3
Mods / Re: [0.97a] Junk Yard Dogs - V 2.9.3 - 03/10/24
« on: March 15, 2024, 07:57:15 AM »
Nice touch on the custom bounties. Some of them are meaner than a Junkyard Dog.

4
Modding / Re: [0.97a-RC10][WIP] Domain Phase Lab
« on: March 14, 2024, 09:04:49 PM »
Current version available for download is 0.5. The file Domain Phase Lab.zip was last updated 2 weeks ago.

Nevermind! It seems to have updated while I was making my post.

5
Mods / Re: [0.97a] LOST_SECTOR - Exploration and Quest content
« on: March 10, 2024, 01:04:56 AM »
It seems LOST_SECTOR seems to be fixing luddic path rep to -80.
(Took a while to isolate what mod was causing it)

When do some missions for path, it does show reputation going up but at intel screen it goes right back down to -80.
I tried choosing luddic path rep reward from Content Unlocking Missions mod(For the Greater Ludd mission reward) which shows +80 or so rep bonus, and intel screen shows -80.
I used console commands to raise the rep to 0, and this time it stays that way untill I get a rep change(+ or -) and it goes all the way back down to -80.

It wasn't like this before(0.96 versions), so I assume something added in 0.6.1d is causing this.
Is this intended feature?

It looks like the error is caused by "thronesGiftManager". I think this bit of code is only supposed to run for a custom start, but it is getting activated for Corvus. Unfortunately this means a Luddic path playthrough is impossible, as your rep will drop, annulling your commission. Hopefully the next patch/update will fix this problem.

6
Custom-created systems can avoid this with a HS cleanup function. However, I have not (yet) found a way to do the same for randomally generated systems. To be fair, I kind of like having hyperspace storms layerred over unexplored or distant systems; adds to the risk (and charm) IMNSHO.

Quote
void cleanup(StarSystemAPI system) {
        HyperspaceTerrainPlugin plugin = (HyperspaceTerrainPlugin) Misc.getHyperspaceTerrain().getPlugin();
        NebulaEditor editor = new NebulaEditor(plugin);
        float minRadius = plugin.getTileSize() * 0.5f;

        float radius = system.getMaxRadiusInHyperspace();
        editor.clearArc(system.getLocation().x, system.getLocation().y, 0, radius + minRadius * 0.5f, 0, 360f);
        editor.clearArc(system.getLocation().x, system.getLocation().y, 0, radius + minRadius, 0, 360f, 0.25f);

    }

7
Mods / Re: [0.97a] Terraforming and Station Construction (v9.0.0)
« on: February 26, 2024, 03:18:40 PM »
CTD error when attempting to build an Industry on a station. I've attempted this with two different industries (such as Hydroponics). Will try with a planetary colony soon(tm) and see if I get the same results.

Copy of crash message:
Spoiler
java.lang.NullPointerException
   at boggled.scripts.BoggledTerraformingRequirement$RequirementContext.<init>(BoggledTerraformingRequirement.java:80)
   at boggled.campaign.econ.industries.BoggledCommonIndustry.<init>(BoggledCommonIndustry.java:170)
   at boggled.campaign.econ.industries.BoggledBaseIndustry.init(BoggledBaseIndustry.java:29)
   at grandcolonies.listeners.IndustryPanelReplacer.getWidgetIndustry(IndustryPanelReplacer.kt:374)
   at grandcolonies.listeners.IndustryPanelReplacer.getAllWidgets(IndustryPanelReplacer.kt:340)
   at grandcolonies.listeners.IndustryPanelReplacer.advance(IndustryPanelReplacer.kt:156)
   at com.fs.starfarer.campaign.CampaignEngine.advance(Unknown Source)
   at com.fs.starfarer.campaign.CampaignState.advance(Unknown Source)
   at com.fs.starfarer.BaseGameState.traverse(Unknown Source)
   at com.fs.state.AppDriver.begin(Unknown Source)
   at com.fs.starfarer.combat.CombatMain.main(Unknown Source)
   at com.fs.starfarer.StarfarerLauncher.super(Unknown Source)
   at com.fs.starfarer.StarfarerLauncher$1.run(Unknown Source)
   at java.lang.Thread.run(Thread.java:748)
[close]

8
Mods / Re: [0.96a] Osiris Alliance v4.0.2
« on: February 20, 2024, 06:15:08 PM »
Encountered a CTD error with the introductory bar mission (OasQuestIntro). The error occurs after the mission is accepted if the quest icon, on the intel map, is clicked on.

Copy of error report:
Spoiler
577714 [Thread-3] ERROR com.fs.starfarer.combat.CombatMain  - java.lang.IncompatibleClassChangeError: Expecting non-static method fi.toopok4k3.oas.quests.OasQuestIntro.addStandardMarketDesc(Ljava/lang/String;Lcom/fs/starfarer/api/campaign/econ/MarketAPI;Lcom/fs/starfarer/api/ui/TooltipMakerAPI;F)V
java.lang.IncompatibleClassChangeError: Expecting non-static method fi.toopok4k3.oas.quests.OasQuestIntro.addStandardMarketDesc(Ljava/lang/String;Lcom/fs/starfarer/api/campaign/econ/MarketAPI;Lcom/fs/starfarer/api/ui/TooltipMakerAPI;F)V
   at fi.toopok4k3.oas.quests.OasQuestIntro.addDescriptionForNonEndStage(OasQuestIntro.java:58)
   at com.fs.starfarer.api.impl.campaign.missions.hub.BaseHubMission.addDescriptionFo rCurrentStage(BaseHubMission.java:758)
   at com.fs.starfarer.api.impl.campaign.missions.hub.BaseHubMission.createSmallDescr iption(BaseHubMission.java:2343)
   at com.fs.starfarer.campaign.comms.v2.EventsPanel.super(Unknown Source)
   at com.fs.starfarer.campaign.comms.v2.EventsPanel.actionPerformed(Unknown Source)
   at com.fs.starfarer.campaign.comms.v2.EventsPanel.intelMapIconClicked(Unknown Source)
   at com.fs.starfarer.coreui.A.A.super(Unknown Source)
   at com.fs.starfarer.coreui.A.H.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.coreui.A.while$Oo.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.o000.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.o000.processInputImpl(Unknown Source)
   at com.fs.starfarer.coreui.A.while.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.o000.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.o000.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.o000.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.o000.processInputImpl(Unknown Source)
   at com.fs.starfarer.campaign.comms.v2.EventsPanel.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.o000.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.o000.processInputImpl(Unknown Source)
   at com.fs.starfarer.campaign.comms.return.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.o000.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.o000.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.newui.o0OO.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.o000.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.o000.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.O.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.newui.L.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.o000.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.o000.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.campaign.CampaignState.processInput(Unknown Source)
   at com.fs.starfarer.BaseGameState.traverse(Unknown Source)
   at com.fs.state.AppDriver.begin(Unknown Source)
   at com.fs.starfarer.combat.CombatMain.main(Unknown Source)
   at com.fs.starfarer.StarfarerLauncher.super(Unknown Source)
   at com.fs.starfarer.StarfarerLauncher$1.run(Unknown Source)
   at java.lang.Thread.run(Thread.java:748)
[close]

9
Mods / Re: [0.97a] The Knights of Ludd
« on: February 19, 2024, 09:46:25 PM »
Found a CTD bug. Caused by hovering over the battle station industry on the Libra.
Message: java.lang.RuntimeException: Industry [kol_battlestar_libra] not found

The industry has a typo in the industries.csv file: "kol_battlestar_librar"

10
Mods / Re: [0.97 / 0.96] Indies Expansion Pack v1.8
« on: February 08, 2024, 09:16:42 AM »
Hotfix is out, thanks for reporting!

in the meantime ill try to find underlaying problem of the bugs

Great! I'll give it a whirl soon, and see if there are any issues with other ships with modules too.

11
Mods / Re: [0.97 / 0.96] Indies Expansion Pack v1.8
« on: February 07, 2024, 04:43:09 PM »
Glad to see the mod get updated for 0.97.

Unfortunately I have encountered an issue that causes a crash to desktop. This occurs when attempting to edit/add hullmods on a ship with modules.
Hullmod: Stored Frigate acs_frigate_on_hangar

Crash log below. Occurred on the Newfoundland ship from ED Shipyards
Spoiler
java.lang.NullPointerException
   at data.scripts.hullmods.acs_frigate_on_hangar.isApplicableToShip(acs_frigate_on_hangar.java:100)
   at com.fs.starfarer.coreui.refit.ModPickerDialogV3.isApplicable(Unknown Source)
   at com.fs.starfarer.coreui.refit.ModPickerDialogV3$3.o00000(Unknown Source)
   at com.fs.starfarer.coreui.refit.ModPickerDialogV3$3.compare(Unknown Source)
   at com.fs.starfarer.campaign.ui.UITable$1.o00000(Unknown Source)
   at com.fs.starfarer.campaign.ui.UITable$1.compare(Unknown Source)
   at java.util.Arrays.mergeSort(Arrays.java:1544)
   at java.util.Arrays.mergeSort(Arrays.java:1556)
   at java.util.Arrays.mergeSort(Arrays.java:1555)
   at java.util.Arrays.mergeSort(Arrays.java:1556)
   at java.util.Arrays.legacyMergeSort(Arrays.java:1523)
   at java.util.Arrays.sort(Arrays.java:1510)
   at java.util.ArrayList.sort(ArrayList.java:1464)
   at java.util.Collections.sort(Collections.java:177)
   at com.fs.starfarer.campaign.ui.UITable.sort(Unknown Source)
   at com.fs.starfarer.coreui.refit.ModPickerDialogV3.updateTable(Unknown Source)
   at com.fs.starfarer.coreui.refit.ModPickerDialogV3.tagsChanged(Unknown Source)
   at com.fs.starfarer.coreui.refit.ModPickerDialogV3.restoreTags(Unknown Source)
   at com.fs.starfarer.coreui.refit.ModPickerDialogV3.<init>(Unknown Source)
   at com.fs.starfarer.coreui.refit.ModWidget.actionPerformed(Unknown Source)
   at com.fs.starfarer.ui.n.buttonPressed(Unknown Source)
   at com.fs.starfarer.ui.I.new(Unknown Source)
   at com.fs.starfarer.ui.I.processInput(Unknown Source)
   at com.fs.starfarer.ui.W.super(Unknown Source)
   at com.fs.starfarer.BaseGameState.traverse(Unknown Source)
   at com.fs.state.AppDriver.begin(Unknown Source)
   at com.fs.starfarer.combat.CombatMain.main(Unknown Source)
   at com.fs.starfarer.StarfarerLauncher.o00000(Unknown Source)
   at com.fs.starfarer.StarfarerLauncher$1.run(Unknown Source)
   at java.lang.Thread.run(Thread.java:748)
[close]

12
Mods / Re: [0.96a] ED Shipyards 2.6.4 (2023-12-31)
« on: February 04, 2024, 05:32:25 AM »
I think the new distress signal encounter from the mod happens too often and I always find myself fighting a pirate armada now
I think you're right. The overall frequency of distress calls seems the same, but the ones from ED are edging out the other types I think.

13
Great mod! Lovely new update. Unfortunately, I encounter a crash when using an Alpha core on the organized crime industry. The error occurs when an Alpha core is instaklled, and a mouseover event happens. Copy of the error report below.
Spoiler
java.lang.NoSuchMethodError: com.fs.starfarer.api.ui.TooltipMakerAPI.addImageWithText(F)V
   at data.scripts.campaign.econ.yrxp_crime.addAlphaCoreDescription(yrxp_crime.java:145)
   at com.fs.starfarer.api.impl.campaign.econ.impl.BaseIndustry.addAICoreSection(BaseIndustry.java:1383)
   at com.fs.starfarer.api.impl.campaign.econ.impl.BaseIndustry.addInstalledItemsSect ion(BaseIndustry.java:1301)
   at com.fs.starfarer.api.impl.campaign.econ.impl.BaseIndustry.createTooltip(BaseIndustry.java:1269)
   at data.scripts.campaign.econ.yrxp_crime.createTooltip(yrxp_crime.java:96)
   at com.fs.starfarer.campaign.ui.marketinfo.intnew$1.createImpl(Unknown Source)
   at com.fs.starfarer.ui.impl.StandardTooltipV2Expandable.create(Unknown Source)
   at com.fs.starfarer.ui.impl.StandardTooltipV2Expandable.beforeShown(Unknown Source)
   at com.fs.starfarer.ui.thissuper.showTooltip(Unknown Source)
   at com.fs.starfarer.ui.O0Oo.oÒ0000(Unknown Source)
   at com.fs.starfarer.ui.O0Oo.processInput(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.newui.int.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.impl.StandardTooltipV2.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.g$Oo.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.g.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.newui.int.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.coreui.voidnew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.newui.o0OO.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.public.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.newui.L.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.public.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.newui.classsuper.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.dispatchEventsToChildren(Unknown Source)
   at com.fs.starfarer.ui.interfacenew.processInputImpl(Unknown Source)
   at com.fs.starfarer.ui.thissuper.processInput(Unknown Source)
   at com.fs.starfarer.campaign.CampaignState.processInput(Unknown Source)
   at com.fs.starfarer.BaseGameState.traverse(Unknown Source)
   at com.fs.state.AppDriver.begin(Unknown Source)
   at com.fs.starfarer.combat.CombatMain.main(Unknown Source)
   at com.fs.starfarer.StarfarerLauncher.o00000(Unknown Source)
   at com.fs.starfarer.StarfarerLauncher$1.run(Unknown Source)
   at java.lang.Thread.run(Thread.java:748)
[close]

14
Modding / Re: [0.96a] Symbiotic Void Creatures 0.4.2-alpha
« on: December 03, 2023, 06:13:17 AM »
Wonderful mod! Just tried it out on a new playthrough. Happily exploring the areas outside the core worlds... and then saw the event. To borrow the phrase from the Dwarf Fortress community: (sometimes) Loosing is Fun. Was a great introduction to the mod. Going to try the custom Bugmaster start sometime soon.

15
Mods / Re: [0.96a] Astral Ascension V1.2.6 - A Mod that Uncaps Colony Size
« on: December 02, 2023, 04:31:43 PM »
Feature request: changing/disabling the appearance of the planet types

When editing planets.json, I have tried changing the filename for the planetary textures. Making the edits to the JSON configuration files produces an empty texture, which in-game is shown as an invisible planet.

My changes are to the "texture" element.
For example: AA_ecumenopolis.jpg -> forgeworld.jpg

I have also tried changes to the settings in settings.json for planetary graphics. The alternate texture file is accessible and in the correct path. The world displays as normal, until a change of population of 10+. Everything else works, the pop change and planetary condition.

While my editing attempts may not be in the spirit of the mod, I would like to use my own texture files with Astral. Could an option be added (in config, or Luna) to disable the texture switch? Hopefully this issue is not evidence of some bug or resource conflict.


Pages: [1] 2 3 4