diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-07-06 17:11:28 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-07-06 17:11:28 -0300 |
commit | d45e23908126f05f0d162a9cbe4f602083e8aae5 (patch) | |
tree | 52b2cf09aee8f5b1387a43ee70fa5284393409ba | |
parent | f93dca97a232527f45071453cb40837f33e4a6c4 (diff) | |
download | serverdata-d45e23908126f05f0d162a9cbe4f602083e8aae5.tar.gz serverdata-d45e23908126f05f0d162a9cbe4f602083e8aae5.tar.bz2 serverdata-d45e23908126f05f0d162a9cbe4f602083e8aae5.tar.xz serverdata-d45e23908126f05f0d162a9cbe4f602083e8aae5.zip |
Fix bank GP reset bug
-rw-r--r-- | npc/032-1/episode.txt | 2 | ||||
-rw-r--r-- | npc/items/lofteleporter.txt | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/npc/032-1/episode.txt b/npc/032-1/episode.txt index 13f2d4ec0..98a1503b5 100644 --- a/npc/032-1/episode.txt +++ b/npc/032-1/episode.txt @@ -547,8 +547,6 @@ OnInit: } 032-1,114,194,0 script Imec#EP NPC_LOF_TRAVMERC,{ - #MerchantBank+=#MerchantBank; - #MerchantBank=0; .@q = (getq(LoFQuest_EPISODE) == 15 ? getq2(LoFQuest_EPISODE) : 99); .@x = getq3(LoFQuest_EPISODE); .@met_banu = (.@x & 1); diff --git a/npc/items/lofteleporter.txt b/npc/items/lofteleporter.txt index 1e2f8e889..9952d726d 100644 --- a/npc/items/lofteleporter.txt +++ b/npc/items/lofteleporter.txt @@ -109,7 +109,7 @@ OnUse: case 8: //atcommand("@block "+strcharinfo(0)); // Reset your bank savings (temporary) - #MerchantBank=BankVault; + #MerchantBank+=BankVault; BankVault=0; setq2 LoFQuest_EPISODE, 0; setq3 LoFQuest_EPISODE, 0; |