diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-10 09:09:33 -0200 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-10 09:09:33 -0200 |
commit | 63b4fdbdc035107d484c61ce796122f3b505efb8 (patch) | |
tree | c3aebbd64cf83b6bbddf62b22163c5e49111e309 /npc/005-6/zitoni.txt | |
parent | 278749eb1bb5f18f09ccfc7330ad95b3875cae77 (diff) | |
download | serverdata-63b4fdbdc035107d484c61ce796122f3b505efb8.tar.gz serverdata-63b4fdbdc035107d484c61ce796122f3b505efb8.tar.bz2 serverdata-63b4fdbdc035107d484c61ce796122f3b505efb8.tar.xz serverdata-63b4fdbdc035107d484c61ce796122f3b505efb8.zip |
Zitoni now have a linear price increase, starting from 200 GP at level 10
Diffstat (limited to 'npc/005-6/zitoni.txt')
-rw-r--r-- | npc/005-6/zitoni.txt | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/npc/005-6/zitoni.txt b/npc/005-6/zitoni.txt index 2d30ff342..b56adb5df 100644 --- a/npc/005-6/zitoni.txt +++ b/npc/005-6/zitoni.txt @@ -26,12 +26,11 @@ L_Menu: .@visited = getq(General_Rumly); - .@plush_count = lognbaselvl(1, 10)-10; - if (BaseLevel < 10) { - .@plush_count = BaseLevel; - } - .@plush_count=.@plush_count*30; - // Lv 9: 270 GP | Lv 10: 600 GP + if (BaseLevel < 10) + .@plush_count = 1; + else + .@plush_count = BaseLevel*200-(9*200); + // Lv 9: 1 GP | Lv 10: 200 GP select l("Plushrooms you say?"), @@ -68,7 +67,7 @@ L_Menu: l("You can use it to clear your stats, to start freshly if you see what I mean..."), l("For only a small amount of Gold Pieces, I will show you how it works!"), l("Although the more powerful you are, the more money you will need."), - l("Until you reach level 10, it is really cheap. Then, you'll need to pay standard price."); + l("I will let you test it for a peny until level 10!"); select l("Sounds good!"), |