diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-02 17:29:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-02 17:29:56 -0300 |
commit | 472f4608fbab278d0b5a6aa37acc4c1c6b7c4b76 (patch) | |
tree | f28dd02f562df9a9bfbb3bbde5bfb35fa2151e66 | |
parent | 48d0deea88af0e3dbf9aa85822f5b5e9d2ee7b2f (diff) | |
download | serverdata-472f4608fbab278d0b5a6aa37acc4c1c6b7c4b76.tar.gz serverdata-472f4608fbab278d0b5a6aa37acc4c1c6b7c4b76.tar.bz2 serverdata-472f4608fbab278d0b5a6aa37acc4c1c6b7c4b76.tar.xz serverdata-472f4608fbab278d0b5a6aa37acc4c1c6b7c4b76.zip |
Charge taxes at Nivalis and Frostia
-rw-r--r-- | npc/020-5/bracco.txt | 15 | ||||
-rw-r--r-- | npc/024-15/lilanna.txt | 12 | ||||
-rw-r--r-- | npc/024-9/barkeeper.txt | 12 |
3 files changed, 38 insertions, 1 deletions
diff --git a/npc/020-5/bracco.txt b/npc/020-5/bracco.txt index 38690d036..d74e4f68e 100644 --- a/npc/020-5/bracco.txt +++ b/npc/020-5/bracco.txt @@ -110,8 +110,10 @@ L_Start: goto L_Meltdown; closedialog; - if (@menu == 1) + if (@menu == 1) { + npcshopattach(.name$); shop .name$; + } goodbye; close; // Note: the prices are absurd atm, but hey hey, every single one of them are cap items currently @@ -290,4 +292,15 @@ OnMon2000: restoreshopitem IronAmmoBox,rand(3,5); end; +// Pay your taxes! +OnBuyItem: + debugmes("Purchase confirmed"); + PurchaseTaxes(); + end; + +OnSellItem: + debugmes("Sale confirmed"); + SaleTaxes(); + end; + } diff --git a/npc/024-15/lilanna.txt b/npc/024-15/lilanna.txt index 5c349a9b8..ce4698c68 100644 --- a/npc/024-15/lilanna.txt +++ b/npc/024-15/lilanna.txt @@ -61,6 +61,7 @@ L_Loop: next; break; case 4: + npcshopattach(.name$); openshop(); closeclientdialog; end; @@ -175,5 +176,16 @@ OnInit: OnClock2358: restoreshopitem BrokenWarpCrystal, 50000, 1; end; + +// Pay your taxes! +OnBuyItem: + debugmes("Purchase confirmed"); + PurchaseTaxes(); + end; + +OnSellItem: + debugmes("Sale confirmed"); + SaleTaxes(); + end; } diff --git a/npc/024-9/barkeeper.txt b/npc/024-9/barkeeper.txt index 2d9f09122..3bfe518a9 100644 --- a/npc/024-9/barkeeper.txt +++ b/npc/024-9/barkeeper.txt @@ -7,6 +7,7 @@ // Temporary Sprite 024-9,39,31,0 script Bar Jobs NPC_DWARF_TRADER,{ hello; + npcshopattach(.name$); shop .name$; close; @@ -29,5 +30,16 @@ OnClock2358: restoreshopitem ClothoLiquor, (($ARKIM_ST-4000)/500)+1; end; +// Pay your taxes! +OnBuyItem: + debugmes("Purchase confirmed"); + PurchaseTaxes(); + end; + +OnSellItem: + debugmes("Sale confirmed"); + SaleTaxes(); + end; + } |