From 4f014747e772eed082e7904c7e6d78c5ef8ec6e1 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 17 Sep 2024 17:31:46 -0700 Subject: add warning about not gaining Series EXP with 100 unclaimed extra levels --- Malmstone/Windows/MainWindow.cs | 6 ++++++ 1 file changed, 6 insertions(+) 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(); -- cgit v1.2.3