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); In-development patch notes for Starsector 0.98a (2/8/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 - Reinweiss

Pages: [1]
1
A couple of quick fixes while we wait for an official update.

yrutl_icon_boarding error:
Spoiler
diff --git a/mods/YRUTL/data/config/settings.json b/mods/YRUTL/data/config/settings.json
index 4d291b5e..dd1efa77 100644
--- a/mods/YRUTL/data/config/settings.json
+++ b/mods/YRUTL/data/config/settings.json
@@ -74,7 +74,7 @@
       
     "graphics":{       
                "ui":{
-                       "icon_boarding":"graphics/icons/hullsys/yrutl_icon_boarding.png",
+                       "yrutl_icon_boarding":"graphics/icons/hullsys/yrutl_icon_boarding.png",
^M
                },
        }
 }
[close]

yrxp_fleet_carrier_2 error:
Spoiler
diff --git a/mods/YRXP/data/hulls/yrxp_fleet_carrier_2.ship b/mods/YRXP/data/hulls/yrxp_fleet_carrier_2.ship
index d1f4c578..cdcc40e5 100644
--- a/mods/YRXP/data/hulls/yrxp_fleet_carrier_2.ship
+++ b/mods/YRXP/data/hulls/yrxp_fleet_carrier_2.ship
@@ -67,6 +67,126 @@
       "angle": -0,
       "locations": [-12.5, -167]
     },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0005",
+      "locations": [
+        47.5,
+        56.5
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0006",
+      "locations": [
+        47.5,
+        -56.5
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0007",
+      "locations": [
+        49.5,
+        48
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0008",
+      "locations": [
+        49.5,
+        -48
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0009",
+      "locations": [
+        51.5,
+        40.5
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0010",
+      "locations": [
+        51.5,
+        -40.5
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0011",
+      "locations": [
+        53.5,
+        33
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0012",
+      "locations": [
+        53.5,
+        -33
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0013",
+      "locations": [
+        55,
+        25
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0014",
+      "locations": [
+        55,
+        -25
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
     {
       "id": "WS0015",
       "size": "SMALL",
[close]

How do i use this? thankies

The stuff in the spoilers show what has been changed where. e.g.
--- a/mods/YRUTL/data/config/settings.json
+++ b/mods/YRUTL/data/config/settings.json
in the first case, the difference is in "/mods/YRUTL/data/config/settings.json" "a" was the original, "b" is the new one.

In between the @@, it tells you where the section underneath is referencing. e.g.
@@ -74,7 +74,7 @@
in the first case, it is referencing lines 74 onwards.

"-" prefix means that line has been deleted
"+" prefix means that line has been added
e.g.
-                       "icon_boarding":"graphics/icons/hullsys/yrutl_icon_boarding.png",
+                       "yrutl_icon_boarding":"graphics/icons/hullsys/yrutl_icon_boarding.png",
in the first case, that means the line
"icon_boarding":"graphics/icons/hullsys/yrutl_icon_boarding.png",
was replaced with
"yrutl_icon_boarding":"graphics/icons/hullsys/yrutl_icon_boarding.png",

When you update your file, you do not have to include the "+" prefix. That's just the output of the diff command. With that first example, you should be able to work out the other one as well :)

Allrighty thanks

2
A couple of quick fixes while we wait for an official update.

yrutl_icon_boarding error:
Spoiler
diff --git a/mods/YRUTL/data/config/settings.json b/mods/YRUTL/data/config/settings.json
index 4d291b5e..dd1efa77 100644
--- a/mods/YRUTL/data/config/settings.json
+++ b/mods/YRUTL/data/config/settings.json
@@ -74,7 +74,7 @@
       
     "graphics":{       
                "ui":{
-                       "icon_boarding":"graphics/icons/hullsys/yrutl_icon_boarding.png",
+                       "yrutl_icon_boarding":"graphics/icons/hullsys/yrutl_icon_boarding.png",
^M
                },
        }
 }
[close]

yrxp_fleet_carrier_2 error:
Spoiler
diff --git a/mods/YRXP/data/hulls/yrxp_fleet_carrier_2.ship b/mods/YRXP/data/hulls/yrxp_fleet_carrier_2.ship
index d1f4c578..cdcc40e5 100644
--- a/mods/YRXP/data/hulls/yrxp_fleet_carrier_2.ship
+++ b/mods/YRXP/data/hulls/yrxp_fleet_carrier_2.ship
@@ -67,6 +67,126 @@
       "angle": -0,
       "locations": [-12.5, -167]
     },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0005",
+      "locations": [
+        47.5,
+        56.5
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0006",
+      "locations": [
+        47.5,
+        -56.5
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0007",
+      "locations": [
+        49.5,
+        48
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0008",
+      "locations": [
+        49.5,
+        -48
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0009",
+      "locations": [
+        51.5,
+        40.5
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0010",
+      "locations": [
+        51.5,
+        -40.5
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0011",
+      "locations": [
+        53.5,
+        33
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0012",
+      "locations": [
+        53.5,
+        -33
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": 10,
+      "arc": 20,
+      "id": "WS0013",
+      "locations": [
+        55,
+        25
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
+    {
+      "angle": -10,
+      "arc": 20,
+      "id": "WS0014",
+      "locations": [
+        55,
+        -25
+      ],
+      "mount": "HIDDEN",
+      "size": "SMALL",
+      "type": "MISSILE"
+    },
     {
       "id": "WS0015",
       "size": "SMALL",
[close]

How do i use this? thankies

3
Mods / Re: [0.95.1a] Gundam UC Mod v0.5.1 GP Quick Fix!
« on: June 12, 2023, 11:38:19 PM »
Is this still work in .96a update?

4
Anyone has link for Azalea and Aria??? cant find it in here

Pages: [1]