aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Malmstone/Malmstone.csproj2
-rw-r--r--Malmstone/Malmstone.json4
-rw-r--r--Malmstone/Plugin.cs2
-rw-r--r--Malmstone/Windows/ConfigWindow.cs2
-rw-r--r--Malmstone/Windows/MainWindow.cs8
-rw-r--r--README.md2
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 @@
<PropertyGroup>
<Version>1.0.0.0</Version>
- <Description>A PVP Series Malmstones Experience Calculator</Description>
+ <Description>A PVP Series Malmstones Level Calculator</Description>
<PackageProjectUrl>https://github.com/goatcorp/Malmstone</PackageProjectUrl>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
<IsPackable>false</IsPackable>
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<Payload>());
- 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
<img src="./images/icon.png" alt="Logo" width="120" height="120">
-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)
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage