summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/003-1/malivox.txt1
-rw-r--r--npc/005-6/zitoni.txt4
-rw-r--r--npc/009-3/kevin.txt1
-rw-r--r--npc/012-4/wyara.txt1
-rw-r--r--npc/017-6/azwell.txt3
5 files changed, 8 insertions, 2 deletions
diff --git a/npc/003-1/malivox.txt b/npc/003-1/malivox.txt
index 0a06bd038..9087c9474 100644
--- a/npc/003-1/malivox.txt
+++ b/npc/003-1/malivox.txt
@@ -12,6 +12,7 @@ L_Menu:
else
.@plush_count = BaseLevel*190-(9*190);
// Lv 9: 50 GP | Lv 10: 190 GP
+ // Lv 90: 1.710 GP
if (BaseLevel > 10)
.@plush_count = .@plush_count/(BaseLevel/10);
diff --git a/npc/005-6/zitoni.txt b/npc/005-6/zitoni.txt
index a497477f6..c3d4912f4 100644
--- a/npc/005-6/zitoni.txt
+++ b/npc/005-6/zitoni.txt
@@ -20,7 +20,9 @@ L_Menu:
if (BaseLevel < 10)
.@price = 1;
else
- .@price = (BaseLevel*200-(9*200))/(BaseLevel*10);
+ .@price = (BaseLevel*200-(9*200))/(BaseLevel/10);
+ // Lv 10: 1 GP
+ // Lv 90: 1.800 GP
mesn strcharinfo(0);
select
diff --git a/npc/009-3/kevin.txt b/npc/009-3/kevin.txt
index b85a52257..faf169088 100644
--- a/npc/009-3/kevin.txt
+++ b/npc/009-3/kevin.txt
@@ -14,6 +14,7 @@
L_Menu:
.@plush_count = BaseLevel*210-(9*210);
// Lv 10: 210 GP
+ // Lv 90: 1.890 GP
if (BaseLevel > 10)
.@plush_count = .@plush_count/(BaseLevel/10);
diff --git a/npc/012-4/wyara.txt b/npc/012-4/wyara.txt
index 57b1834b5..822ae07a8 100644
--- a/npc/012-4/wyara.txt
+++ b/npc/012-4/wyara.txt
@@ -16,6 +16,7 @@
L_Menu:
.@plush_count = BaseLevel*210-(10*210);
// Lv 10: 210 GP
+ // Lv 90: 1.867 GP
if (BaseLevel > 10)
.@plush_count = .@plush_count/(BaseLevel/10);
diff --git a/npc/017-6/azwell.txt b/npc/017-6/azwell.txt
index f21284a72..79fa73dd7 100644
--- a/npc/017-6/azwell.txt
+++ b/npc/017-6/azwell.txt
@@ -11,7 +11,8 @@
L_Menu:
.@plush_count = BaseLevel*190-(9*210);
- // Lv 10: ??
+ // Lv 10: 10 GP
+ // Lv 90: 1.690 GP
if (BaseLevel > 10)
.@plush_count = .@plush_count/(BaseLevel/10);