Skip to content

Commit 09879ff

Browse files
authored
Merge pull request #581 from HolterPhylo/UpdateFor13407450
[MRG] Update for 13407450
2 parents 6bb5f98 + f6afcce commit 09879ff

11 files changed

+1417
-1400
lines changed

libMBIN/Source/NMS/GameComponents/GcBackgroundSpaceEncounterInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace libMBIN.NMS.GameComponents
44
{
5-
[NMS(GUID = 0xF022D46259E222D8, NameHash = 0x9803054FC61F20F4)]
5+
[NMS(GUID = 0x57D664ECDFC788E7, NameHash = 0x9803054FC61F20F4)]
66
public class GcBackgroundSpaceEncounterInfo : NMSTemplate
77
{
88
/* 0x00 */ public NMSString0x10 Id;
@@ -12,6 +12,6 @@ public class GcBackgroundSpaceEncounterInfo : NMSTemplate
1212
/* 0x30 */ public float SpawnDistance;
1313
/* 0x34 */ public float MinDuration;
1414
/* 0x38 */ public float DespawnDistance;
15-
/* 0x3C */ public GcPulseEncounterSpawnObject Encounter;
15+
/* 0x40 */ public GcPulseEncounterSpawnObject Encounter;
1616
}
1717
}

libMBIN/Source/NMS/GameComponents/GcExperienceSpawnTable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace libMBIN.NMS.GameComponents
55
{
6-
[NMS(GUID = 0xEBD87AB92DC14AE9, NameHash = 0x5F4CA33999F0D259)]
6+
[NMS(GUID = 0x71941C5EACC5E4EA, NameHash = 0x5F4CA33999F0D259)]
77
public class GcExperienceSpawnTable : NMSTemplate
88
{
99
/* 0x000 */ public List<GcAIShipSpawnData> FlybySpawns;
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
namespace libMBIN.NMS.GameComponents
22
{
3-
[NMS(GUID = 0xEBEF5DA2F06B2B34, NameHash = 0x7CCE260D959425EE)]
3+
[NMS(GUID = 0x25BE49A604767DC8, NameHash = 0x7CCE260D959425EE)]
44
public class GcMissionConditionCurrentPlanetVisited : NMSTemplate
55
{
6+
/* 0x0 */ public bool JustTestSeasonStartPlanetHack;
67
}
78
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
namespace libMBIN.NMS.GameComponents
22
{
3-
[NMS(GUID = 0x7D58868B17FADC8C, NameHash = 0xC28C1E8A4FA47E3B)]
3+
[NMS(GUID = 0x2997545CCDDD9AC1, NameHash = 0xC28C1E8A4FA47E3B)]
44
public class GcMissionConditionMissionCompleted : NMSTemplate
55
{
66
/* 0x00 */ public NMSString0x10 MissionID;
77
/* 0x10 */ public int SeasonalMissionSeed;
88
/* 0x14 */ public bool TakeIDFromSeasonData;
99
/* 0x15 */ public bool CalculateTextMissionTargetFromStageIndex;
10+
/* 0x18 */ public int CalculateSeasonalSeedFromStageIndexOffset;
1011
}
1112
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using libMBIN.NMS.GameComponents;
2+
3+
namespace libMBIN.NMS.GameComponents
4+
{
5+
[NMS(GUID = 0xD523F943FA186627, NameHash = 0x792A334D3849EEA1)]
6+
public class GcMissionConditionPlanetDiscoveries : NMSTemplate
7+
{
8+
/* 0x0 */ public GcDiscoveryType DiscoveryType;
9+
/* 0x4 */ public float PercentDiscovered;
10+
/* 0x8 */ public bool DeepSearchDoneDiscos;
11+
}
12+
}

libMBIN/Source/NMS/GameComponents/GcMissionConditionPlanetPlantDiscoveries.cs

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
namespace libMBIN.NMS.GameComponents
2+
{
3+
[NMS(GUID = 0xA99AE5AA393CACDF, NameHash = 0xA395C630BCD87BBC)]
4+
public class GcMissionConditionThisMissionStageIndex : NMSTemplate
5+
{
6+
/* 0x0 */ public int StageIndex;
7+
}
8+
}

libMBIN/Source/NMS/GameComponents/GcPulseEncounterSpawnObject.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace libMBIN.NMS.GameComponents
44
{
5-
[NMS(GUID = 0x9BEFE5D4AA786C4B, NameHash = 0x82C7C611E7625A21)]
5+
[NMS(GUID = 0xDBD6136FBBF407B7, NameHash = 0x82C7C611E7625A21)]
66
public class GcPulseEncounterSpawnObject : NMSTemplate
77
{
88
/* 0x00 */ public TkModelResource Object;
@@ -11,5 +11,6 @@ public class GcPulseEncounterSpawnObject : NMSTemplate
1111
/* 0x8C */ public float Yaw;
1212
/* 0x90 */ public float Roll;
1313
/* 0x94 */ public float UpOffset;
14+
/* 0x98 */ public NMSString0x10 TriggerActionOnSpawn;
1415
}
1516
}

libMBIN/Source/NMS/Globals/GcUIGlobals.cs

Lines changed: 1385 additions & 1384 deletions
Large diffs are not rendered by default.

libMBIN/Source/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static class Version {
2525
// the Prerelease version should be reset to 1
2626
// When the Release version is incremented:
2727
// the Prerelease version should be reset to 0
28-
internal const string VERSION_STRING = "4.49.0.1";
28+
internal const string VERSION_STRING = "4.49.0.2";
2929

3030
/// <summary>Shorthand for AssemblyVersion.Major</summary>
3131
public static int Major => AssemblyVersion.Major;

0 commit comments

Comments
 (0)