diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-05 17:40:16 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-05 17:40:16 -0300 |
commit | 71d2ac82d51bde8f7a26f2b4587efc6fd4af41d4 (patch) | |
tree | 5fae2071093adcef3905d1ee9f27e8dbd65ff3f9 /npc | |
parent | 08de684bb4a33e8fa5f94adf5fdbb7282f7c3193 (diff) | |
download | serverdata-71d2ac82d51bde8f7a26f2b4587efc6fd4af41d4.tar.gz serverdata-71d2ac82d51bde8f7a26f2b4587efc6fd4af41d4.tar.bz2 serverdata-71d2ac82d51bde8f7a26f2b4587efc6fd4af41d4.tar.xz serverdata-71d2ac82d51bde8f7a26f2b4587efc6fd4af41d4.zip |
Implement Housing Letters
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/bank.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/npc/functions/bank.txt b/npc/functions/bank.txt index a8c341dee..77738e9ed 100644 --- a/npc/functions/bank.txt +++ b/npc/functions/bank.txt @@ -21,6 +21,7 @@ function script Banking { select rif(Zeny > 0, l("Deposit.")), rif(BankVault > 0, l("Withdraw.")), + l("Buy a Housing Letter"), l("I'm done."); switch (@menu) @@ -118,6 +119,32 @@ function script Banking { } break; + case 3: + .@gp=REAL_ESTATE_CREDITS+Zeny; + mesc l("You currently have @@ mobiliary credits + GP at your disposal.", format_number(.@gp)); + mesc l("@@ - @@ - @@", getitemlink(HousingLetterI), getitemlink(HousingLetterII), getitemlink(HousingLetterIII)); + next; + select + l("Nothing"), + rif(.@gp >= 11000, l("Housing Letter I for 11,000 GP")), + rif(.@gp >= 101000, l("Housing Letter II for 101,000 GP")), + rif(.@gp >= 1001000, l("Housing Letter III for 1,001,000 GP")); + mes ""; + switch (@menu) { + case 2: + realestate_payment(11000); + getitem HousingLetterI, 1; + break; + case 3: + realestate_payment(101000); + getitem HousingLetterII, 1; + break; + case 4: + realestate_payment(1001000); + getitem HousingLetterIII, 1; + break; + } + break; default: return; } } while (true); |