1
Mods / Re: [0.96a] Yuri Expedition v.3.0.2 || Faction Pack || Hotfix 12/27 [YRXP]
« on: February 09, 2024, 12:11:37 AM »A couple of quick fixes while we wait for an official update.
yrutl_icon_boarding error:Spoilerdiff --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:Spoilerdiff --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