diff options
-rw-r--r-- | npc/025-1/yuko.txt | 2 | ||||
-rw-r--r-- | npc/craft/options.txt | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/npc/025-1/yuko.txt b/npc/025-1/yuko.txt index e14775af7..a8e8b4b5a 100644 --- a/npc/025-1/yuko.txt +++ b/npc/025-1/yuko.txt @@ -7,7 +7,7 @@ mesn; mesq l("Cuf! Cuf!"); // --TRANSLATORS: NOT A TYPO next; - mesn; + mesn "Yuko Cuf"; mesq l("Can I help you somehow today?"); next; closeclientdialog; diff --git a/npc/craft/options.txt b/npc/craft/options.txt index 318386497..c53bfef9b 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -1056,16 +1056,16 @@ function script csysGUI_OptPrice { case CRGROUP_SPEED: case CRGROUP_DOUBLE: case CRGROUP_MAXPC: - return 16000*.@lv; + return (.@lv < 10 ? 16000 : 15000)*.@lv; // Tier 3 case CRGROUP_SCRESIST: case CRGROUP_SCINFLICT: case CRGROUP_MANAUSE: case CRGROUP_BOSSATK: - return 32000*.@lv; + return (.@lv < 10 ? 32000 : 30000)*.@lv; // Final case CRGROUP_FINAL: - return 40000*.@lv; + return (.@lv < 10 ? 40000 : 35000)*.@lv; default: return Exception("Invalid optprice group: "+.@cr); } |