diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-09-17 17:31:46 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-09-17 17:31:46 -0700 |
| commit | 4f014747e772eed082e7904c7e6d78c5ef8ec6e1 (patch) | |
| tree | 0bfb815990f26bba3bd84bf178721c84ade2d9ce | |
| parent | 644a57b60b48621bebbfc4c519027416d3f2fdae (diff) | |
add warning about not gaining Series EXP with 100 unclaimed extra levels
| -rw-r--r-- | Malmstone/Windows/MainWindow.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Malmstone/Windows/MainWindow.cs b/Malmstone/Windows/MainWindow.cs index cf0c085..72a1a2a 100644 --- a/Malmstone/Windows/MainWindow.cs +++ b/Malmstone/Windows/MainWindow.cs @@ -75,6 +75,12 @@ namespace Malmstone.Windows ImGui.Spacing(); ImGui.Text($"You have {xpResult.RemainingXp} remaining series EXP to go until you reach level {xpResult.TargetLevel}"); + + // If player has 100 unclaimed series levels (+30 for all main malmstones) + if(pvpInfo.CurrentSeriesRank > 130) + ImGui.TextColored(new Vector4(1.0f, 0.0f, 0.0f, 1.0f),"You must really love PVP... Congrats on maxing out Series Malmstone" + + "\nThe Infinite Level is known to max out at 100 unclaimed rewards" + + "\nYou will not gain additional Series EXP until you claim them!"); ImGui.Spacing(); ImGui.Separator(); |
