diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-19 09:05:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-19 09:05:29 -0300 |
commit | 287e4b15ea6a2f10068c776abc89cf0a444c2c7d (patch) | |
tree | 6a869c9687ec1a88c8f5e1cddfd914fba6ae7170 | |
parent | 8d0d576e07992847b27c444f7aa9dc3c7c66cfe8 (diff) | |
download | serverdata-287e4b15ea6a2f10068c776abc89cf0a444c2c7d.tar.gz serverdata-287e4b15ea6a2f10068c776abc89cf0a444c2c7d.tar.bz2 serverdata-287e4b15ea6a2f10068c776abc89cf0a444c2c7d.tar.xz serverdata-287e4b15ea6a2f10068c776abc89cf0a444c2c7d.zip |
Treasure Map can now jackpot up to 2000 GP (instead of max 1000 GP)
-rw-r--r-- | db/re/item_db.conf | 2 | ||||
-rw-r--r-- | npc/items/shovel.txt | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 303f0d6f2..a78b91ce3 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -12258,7 +12258,7 @@ item_db: ( { Id: 7142 AegisName: "Item7142" - Name: "Item 7142" + Name: "Item 7142" // Embryo }, { Id: 7400 diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index f528764c0..f414cd055 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -392,6 +392,8 @@ function script shovel_randomtreasure { Diamond,Ruby,Emerald,Sapphire,Topaz,Amethyst); delitem TreasureMap, 1; .@amount=any(1,1,2); + if (.@id == TreasureKey || .@id == CoinBag) + .@amount+=any(0,1,0,1,2); getitem .@id, .@amount; ShovelQuests_AssignedMAP$=""; ShovelQuests_AssignedX=0; |