diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-15 21:51:29 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-15 21:51:29 -0200 |
commit | 527c4d3bba66e2ff2d6161dcf24a0be98def9941 (patch) | |
tree | b9281cfa07ad5df2c49e38e3b1848782f226b0b5 | |
parent | c85273d3098c0fdd07fc68ebb3dc85c90a350376 (diff) | |
download | serverdata-527c4d3bba66e2ff2d6161dcf24a0be98def9941.tar.gz serverdata-527c4d3bba66e2ff2d6161dcf24a0be98def9941.tar.bz2 serverdata-527c4d3bba66e2ff2d6161dcf24a0be98def9941.tar.xz serverdata-527c4d3bba66e2ff2d6161dcf24a0be98def9941.zip |
Sell a Knife at Candor, instead of Small Knife (quest item now).
Lower its price. Increase a timer in Tutorial.
-rw-r--r-- | db/re/item_db.conf | 4 | ||||
-rw-r--r-- | npc/000-0/sailors.txt | 2 | ||||
-rw-r--r-- | npc/005-4/shop.txt | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index ed8ae345a..2eb6f862f 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -9693,8 +9693,8 @@ item_db: ( AegisName: "Knife" Name: "Knife" Type: "IT_WEAPON" - Buy: 200 - Sell: 90 + Buy: 180 + Sell: 80 Weight: 120 Atk: 50 Matk: 0 diff --git a/npc/000-0/sailors.txt b/npc/000-0/sailors.txt index 84a156cab..d25701f97 100644 --- a/npc/000-0/sailors.txt +++ b/npc/000-0/sailors.txt @@ -100,7 +100,7 @@ OnTouch: mesc l("Click on the NPCs (Non-Player Characters) around you to continue the introduction."); next; - addtimer(15000,"Elmo#sailors::OnSlow"); + addtimer(20000,"Elmo#sailors::OnSlow"); warp "000-0-0", 30, 36; closedialog; diff --git a/npc/005-4/shop.txt b/npc/005-4/shop.txt index 0bb8d6eca..d73bc152a 100644 --- a/npc/005-4/shop.txt +++ b/npc/005-4/shop.txt @@ -10,7 +10,7 @@ OnInit: tradertype(NST_MARKET); sellitem RoundLeatherShield, -1, 2; - sellitem SmallKnife, -1, 5; + sellitem Knife, -1, 5; sellitem TolchiArrow, -1, 30000; sellitem TolchiAmmoBox, -1, 4; sellitem LousyMoccasins, -1, 4; @@ -25,7 +25,7 @@ OnClock1206: OnClock1811: OnClock0004: restoreshopitem RoundLeatherShield, -1, 2; - restoreshopitem SmallKnife, -1, 5; + restoreshopitem Knife, -1, 5; restoreshopitem TolchiArrow, -1, 30000; restoreshopitem TolchiAmmoBox, -1, 4; restoreshopitem LousyMoccasins, -1, 4; |