diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-18 19:34:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-18 19:34:13 -0300 |
commit | d158f2aac827c4edff88eba2bff0b0b5c8a37075 (patch) | |
tree | 06d543a5b69182f2114ba5bcf6d69ef5f0262e72 /npc/craft/options.txt | |
parent | 11a7f52b323cb7b17505bfc50c550e5c63af6499 (diff) | |
download | serverdata-d158f2aac827c4edff88eba2bff0b0b5c8a37075.tar.gz serverdata-d158f2aac827c4edff88eba2bff0b0b5c8a37075.tar.bz2 serverdata-d158f2aac827c4edff88eba2bff0b0b5c8a37075.tar.xz serverdata-d158f2aac827c4edff88eba2bff0b0b5c8a37075.zip |
Lower price of craft rank 2 to level 100 in 5 million MobPt.
...Which is nothing, really.
Diffstat (limited to 'npc/craft/options.txt')
-rw-r--r-- | npc/craft/options.txt | 8 |
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); |