Fractal Softworks Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Starsector 0.98a is out! (03/27/25)

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 - Yunru

Pages: 1 [2] 3 4 ... 105
16
Mods / Re: [0.97a] Terraforming and Station Construction (v9.0.8)
« on: May 16, 2024, 01:08:21 PM »
So one of my mods adds a planet that has BOGGLED_AI_STATION as it's station.
Thing is... whenever the station's defeated, it's not disabled and is immediately ready to re-enter combat.
Not sure if this bug is your end or mine, but between the two of us you're basically the only one that knows what they're doing 'XD

Update: I tested making a colony and adding the station to it in-game with console commands, before giving it to the Hegemony. I can confirm it's the station itself rather than me messing something up.

17
I want to increase the returns from and cooldown between raids by a factor of 30.
Where should I look to get started?

18
Mods / Re: [0.95.1] Slightly Better Tech-Mining
« on: October 22, 2023, 03:43:17 AM »
I'm still reorganising after a move, then computer issues and whatnot, but finally (remembered my password and) have an update for SBTM:
https://drive.google.com/file/d/16K-kt-6YAk0X2Eh8jndJCGE2DHKgfy7V/view?usp=share_link

19
Bug Reports & Support (modded) / Re: Error: Null Pointer Exception
« on: December 13, 2022, 07:24:32 AM »
Right here:
Code
at data.scripts.campaign.submarkets.PSE_SODCampSubmarketPlugin.updateCargoPrePlayerInteraction(PSE_SODCampSubmarketPlugin.java:52)

20
General Discussion / Re: Assign Ships/Tasks to Colonies?
« on: November 19, 2022, 03:27:54 AM »
Well now you have me curious. A game starting with X with supply lines and such?

21
Bug Reports & Support / Re: RTX 3060 TI - Ryzen 5 3600x performance
« on: November 19, 2022, 01:18:28 AM »
Sounds like a CPU bottleneck?

22
If you're using JRE8, then people will tell you to ignore it because the garbage collection will in all likelyhood handle it, it's just the game won't recognise that because it's designed for JRE7.

23
...
VRAM-Impact can be high - the mod only loads images in systems you visit, but cannot un-load them, so VRAM use can be up to 250mb depending on your actions.
If you are playing on a system with a weak graphics card (< 2gb VRAM), consider not using this mod.

24
The penalties count as if from D-Mods, iirc, so the impact is reduced by the likes of Rugged Construction.

25
Mods / Re: [0.95.1a] Better Deserved S-Mods 1.54
« on: November 18, 2022, 05:52:51 AM »
This is a really really nice mod. I love how unique some of the effects are.

Have you considered adding a framework for mod compatibility, so mod authors could give their hullmods special effects for smods?
Already possible; just check if the mod's active, check if your hullmod is s-modded (or built in with the setting enabled), and code away.

Personally I do this:
Code: java
    public static boolean yBDSMCheck() {
        return Global.getSettings().getModManager().isModEnabled("better_deserving_smods");
    }

    public static boolean yBDSMApplies(ShipAPI ship, String hullmodID) {
        if (yBDSMCheck()) {
            return (ship.getVariant().getSMods().contains(hullmodID) || (Global.getSettings().getBoolean("BuiltInSMod") && ship.getVariant().getHullSpec().isBuiltInMod(hullmodID)));
        }
        return false;
    }

26
Modding Resources / Re: [0.95.1a] LunaLib 1.0.0
« on: November 17, 2022, 09:22:55 AM »
UI Config? Hells yes!

27
Suggestions / Re: New Player Experience SUCKS
« on: November 16, 2022, 10:36:57 AM »
Mate you contradicted your own point...
That was the point.

28
Suggestions / Re: New Player Experience SUCKS
« on: November 16, 2022, 05:10:37 AM »
There's no way any game can be successful without holding the player's hands, just imagine if Minecraft had no instructions or directions, and you had to look at the wiki to even know to punch tree, get wood - Oh wait.

29
(Runi is a recruitable officer, afaik)

30
Bug Reports & Support (modded) / Re: Crash shortly after loading game
« on: October 30, 2022, 02:58:03 PM »
You're using Beyond the Sector, your save is already dead.

Pages: 1 [2] 3 4 ... 105