From a7889477df30cfa50dc472f0bb7b9895eace8d61 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Wed, 28 Aug 2024 12:19:17 -0700 Subject: change rank to series level --- Malmstone/Malmstone.csproj | 2 +- Malmstone/Malmstone.json | 4 ++-- Malmstone/Plugin.cs | 2 +- Malmstone/Windows/ConfigWindow.cs | 2 +- Malmstone/Windows/MainWindow.cs | 8 ++++---- README.md | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Malmstone/Malmstone.csproj b/Malmstone/Malmstone.csproj index 4da4bfb..3f1e5c7 100644 --- a/Malmstone/Malmstone.csproj +++ b/Malmstone/Malmstone.csproj @@ -4,7 +4,7 @@ 1.0.0.0 - A PVP Series Malmstones Experience Calculator + A PVP Series Malmstones Level Calculator https://github.com/goatcorp/Malmstone AGPL-3.0-or-later false diff --git a/Malmstone/Malmstone.json b/Malmstone/Malmstone.json index 1159d2a..d1597af 100644 --- a/Malmstone/Malmstone.json +++ b/Malmstone/Malmstone.json @@ -1,8 +1,8 @@ { "Author": "pinapelz", "Name": "Malmstone Calculator", - "Punchline": "A PVP Series Malmstones Experience Calculator", - "Description": "Calculate how much more PVP you have to play before reaching a certain rank in the current PVP Series\nUse /pmalm to open the main window", + "Punchline": "A PVP Series Malmstone Level Calculator", + "Description": "Calculate how much more PVP you have to play before reaching a certain series level in the current PVP Series\nUse /pmalm to open the main window", "ApplicableVersion": "any", "Tags": [ "pvp", diff --git a/Malmstone/Plugin.cs b/Malmstone/Plugin.cs index 08c86eb..695927f 100644 --- a/Malmstone/Plugin.cs +++ b/Malmstone/Plugin.cs @@ -110,7 +110,7 @@ public sealed class Plugin : IDalamudPlugin includeAll = true; } var seString = new SeString(new List()); - seString.Append(new TextPayload("[To Rank " + targetRank + "]")); + seString.Append(new TextPayload("[To Series Level " + targetRank + "]")); if (includeAll || specs.Contains("cc")) { diff --git a/Malmstone/Windows/ConfigWindow.cs b/Malmstone/Windows/ConfigWindow.cs index 96660cb..0ee997c 100644 --- a/Malmstone/Windows/ConfigWindow.cs +++ b/Malmstone/Windows/ConfigWindow.cs @@ -26,7 +26,7 @@ public class ConfigWindow : Window, IDisposable public override void Draw() { - ImGui.Text("Default Series Rank"); + ImGui.Text("Default Target Series Level"); var savedTargetSeriesRank = Configuration.DefaultTargetRankProperty; if (ImGui.InputInt("##SavedTargetSeriesRank", ref savedTargetSeriesRank, 1)) { diff --git a/Malmstone/Windows/MainWindow.cs b/Malmstone/Windows/MainWindow.cs index 111d877..0d288b2 100644 --- a/Malmstone/Windows/MainWindow.cs +++ b/Malmstone/Windows/MainWindow.cs @@ -41,15 +41,15 @@ namespace Malmstone.Windows var pvpInfo = PvPService.GetPvPSeriesInfo(); if (pvpInfo != null) { - ImGui.Text($"Current Series Rank: {pvpInfo.CurrentSeriesRank}"); - ImGui.Text($"Current Rank Series Experience: {pvpInfo.SeriesExperience}"); + ImGui.Text($"Current Series Level: {pvpInfo.CurrentSeriesRank}"); + ImGui.Text($"Current Level Experience Gained: {pvpInfo.SeriesExperience}"); if (pvpInfo.CurrentSeriesRank != pvpInfo.ClaimedSeriesRank) { ImGui.Text("Don't forget to claim your rank rewards!"); } ImGui.Spacing(); - ImGui.Text("Target Rank:"); + ImGui.Text("Target Series Level:"); ImGui.InputInt("##TargetSeriesRank", ref TargetSeriesRank, 1); // Bounds checking to ensure no overflows @@ -73,7 +73,7 @@ namespace Malmstone.Windows var xpResult = _cachedXpResult; ImGui.Spacing(); - ImGui.Text($"You have {xpResult.RemainingXp} remaining series EXP to go until you reach rank {xpResult.TargetLevel}"); + ImGui.Text($"You have {xpResult.RemainingXp} remaining series EXP to go until you reach level {xpResult.TargetLevel}"); ImGui.Spacing(); ImGui.Separator(); diff --git a/README.md b/README.md index e0c2af7..8de3521 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Malmstone Calculator Logo -A Dalamud plugin that calculates how much more PVP you have to play to reach your target Malmstone Series Rank. +A Dalamud plugin that calculates how much more PVP you have to play to reach your target Malmstone Series Level. For an experimental version, please add my custom plugin repository to Dalamud by following the instructions [here](https://github.com/pinapelz/DalamudPlugins) -- cgit v1.2.3