summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/craft/options.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/craft/options.txt b/npc/craft/options.txt
index 337f0950a..1035a7853 100644
--- a/npc/craft/options.txt
+++ b/npc/craft/options.txt
@@ -732,11 +732,11 @@ function script csysGUI_OptPrice {
// Every 3 skills levels (including the 0), price raises in 1
.@lv+=(.@lv/3);
- // Every 10 skills levels (including the 0), price raises in 3
- .@lv+=((.@lv/10)*3);
+ // 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 5
- .@lv+=((.@lv/25)*5);
+ // Every 25 skills levels (including the 0), price raises in 4
+ .@lv+=((.@lv/25)*4);
// Every 99 skills levels (including the 0), price raises in 7
.@lv+=((.@lv/99)*7);