diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-22 18:11:10 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-22 18:11:10 -0300 |
commit | f6aa539309218be5cfbc2cf5cae4e6e5cb94de4c (patch) | |
tree | 699db5786239f83ad395fb14aaefb503d1746c36 /npc/016-1 | |
parent | 8a93d1ecdf1cd88e53bd8345b354b76c1dd6566f (diff) | |
download | serverdata-f6aa539309218be5cfbc2cf5cae4e6e5cb94de4c.tar.gz serverdata-f6aa539309218be5cfbc2cf5cae4e6e5cb94de4c.tar.bz2 serverdata-f6aa539309218be5cfbc2cf5cae4e6e5cb94de4c.tar.xz serverdata-f6aa539309218be5cfbc2cf5cae4e6e5cb94de4c.zip |
Adjust travel prices Tulim<->Hurns. Move file.
Diffstat (limited to 'npc/016-1')
-rw-r--r-- | npc/016-1/_import.txt | 2 | ||||
-rw-r--r-- | npc/016-1/captain.txt (renamed from npc/016-1/marine.txt) | 19 |
2 files changed, 13 insertions, 8 deletions
diff --git a/npc/016-1/_import.txt b/npc/016-1/_import.txt index 9dcb1e0ad..a0e48ac07 100644 --- a/npc/016-1/_import.txt +++ b/npc/016-1/_import.txt @@ -1,5 +1,5 @@ // Map 016-1: La Marine First Deck // This file is generated automatically. All manually added changes will be removed when running the Converter. "npc/016-1/_mobs.txt", +"npc/016-1/captain.txt", "npc/016-1/doors.txt", -"npc/016-1/marine.txt", diff --git a/npc/016-1/marine.txt b/npc/016-1/captain.txt index 3772d88be..e31c9fa28 100644 --- a/npc/016-1/marine.txt +++ b/npc/016-1/captain.txt @@ -5,6 +5,7 @@ // Temporary, placeholder. 016-1,19,29,0 script Captain NPC_NARD,{ + .@price=2000; if (BaseLevel < 20) goto L_TooWeak; @@ -22,15 +23,18 @@ close; L_THurns: - .@price=2000; .@x=marine_reputation("Hurns"); - if (.@x >= 3) - .@price-=1500; + if (.@x >= 5) + .@price-=1750; + else if (.@x >= 4) + .@price-=1600; + else if (.@x >= 3) + .@price-=1200; else if (.@x >= 2) - .@price-=1000; + .@price-=800; else if (.@x >= 1) - .@price-=500; + .@price-=400; mes ""; mesn; @@ -73,10 +77,11 @@ L_THurns: L_TTulim: - .@price=2000; .@x=marine_reputation("Tulim"); - if (.@x >= 10) + if (.@x >= 12) + .@price-=1750; + else if (.@x >= 10) .@price-=1500; else if (.@x >= 8) .@price-=1000; |