diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-17 03:24:50 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-17 03:24:50 -0200 |
commit | 03936aa12e782d777ef451c31d7bea75b67dd433 (patch) | |
tree | 88d27af61003e3af74708a681731827adab32441 /npc/016-1/captain.txt | |
parent | 62c8b5582444596cd9daa0d8488792aa083a9ce2 (diff) | |
download | serverdata-03936aa12e782d777ef451c31d7bea75b67dd433.tar.gz serverdata-03936aa12e782d777ef451c31d7bea75b67dd433.tar.bz2 serverdata-03936aa12e782d777ef451c31d7bea75b67dd433.tar.xz serverdata-03936aa12e782d777ef451c31d7bea75b67dd433.zip |
Make La Marine Prices even more accessible.
Diffstat (limited to 'npc/016-1/captain.txt')
-rw-r--r-- | npc/016-1/captain.txt | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/npc/016-1/captain.txt b/npc/016-1/captain.txt index 07ed0c4e3..f666d9e8f 100644 --- a/npc/016-1/captain.txt +++ b/npc/016-1/captain.txt @@ -5,7 +5,7 @@ // Temporary, placeholder. 016-1,19,29,0 script Captain NPC_NARD,{ - .@price=1000; + .@price=810; if (BaseLevel < 20) goto L_TooWeak; @@ -28,15 +28,15 @@ L_TTulim: .@x=(reputation("Tulim")+reputation(LOCATION$))/2; if (.@x >= 100) - .@price-=950; - else if (.@x >= 80) .@price-=800; + else if (.@x >= 80) + .@price-=640; else if (.@x >= 60) - .@price-=600; + .@price-=480; else if (.@x >= 40) - .@price-=400; + .@price-=320; else if (.@x >= 20) - .@price-=200; + .@price-=160; mes ""; mesn; @@ -74,15 +74,15 @@ L_THurns: .@x=(reputation("Hurns")+reputation(LOCATION$))/2; if (.@x >= 100) - .@price-=950; - else if (.@x >= 80) .@price-=800; + else if (.@x >= 80) + .@price-=640; else if (.@x >= 60) - .@price-=600; + .@price-=480; else if (.@x >= 40) - .@price-=400; + .@price-=320; else if (.@x >= 20) - .@price-=200; + .@price-=160; mes ""; mesn; @@ -119,15 +119,15 @@ L_TNival: .@x=(reputation("Nival")+reputation(LOCATION$))/2; if (.@x >= 100) - .@price-=950; - else if (.@x >= 80) .@price-=800; + else if (.@x >= 80) + .@price-=640; else if (.@x >= 60) - .@price-=600; + .@price-=480; else if (.@x >= 40) - .@price-=400; + .@price-=320; else if (.@x >= 20) - .@price-=200; + .@price-=160; // Nivalis Liberation Day. Zero could cause weird bugs. if (!$NIVALIS_LIBDATE) |