diff options
Diffstat (limited to 'npc/craft/options.txt')
-rw-r--r-- | npc/craft/options.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt index 603418c60..37e19e8be 100644 --- a/npc/craft/options.txt +++ b/npc/craft/options.txt @@ -735,8 +735,8 @@ function script csysGUI_OptPrice { // Every 10 skills levels (including the 0), price raises in 2 .@lv+=((.@lv/10)*2); - // Every 25 skills levels (including the 0), price raises in 4 - .@lv+=((.@lv/25)*4); + // Every 25 skills levels (including the 0), price raises in 5 + .@lv+=((.@lv/25)*5); // Every 99 skills levels (including the 0), price raises in 7 .@lv+=((.@lv/99)*7); |