diff options
Diffstat (limited to 'npc/001-2-19')
-rw-r--r-- | npc/001-2-19/lloyd.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/npc/001-2-19/lloyd.txt b/npc/001-2-19/lloyd.txt index 9dfd97de..a0051caa 100644 --- a/npc/001-2-19/lloyd.txt +++ b/npc/001-2-19/lloyd.txt @@ -115,7 +115,7 @@ } else { - Zeny = Zeny - .@price; + Zeny -= .@price; setq ArtisQuests_Lloyd, 1; speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("Perfect!"), @@ -233,12 +233,14 @@ OnInit: .sex = G_MALE; .distance = 4; end; +} -OnPCLoginEvent: +function script FixBankVault { if (#MerchantBank) { BankVault += max(0, #MerchantBank); #MerchantBank = 0; } - end; + return; } + |