diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-09-02 17:18:17 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-09-02 17:18:17 -0300 |
commit | 6490d9175ba17732cd8a078e40903ee423f2747f (patch) | |
tree | c5ba985222c5e7de165a2a9d35fcca599ac18bdd /npc/003-5/jeweler.txt | |
parent | 15109ff591fb688b945d1062243ceffb0ae6c717 (diff) | |
download | serverdata-6490d9175ba17732cd8a078e40903ee423f2747f.tar.gz serverdata-6490d9175ba17732cd8a078e40903ee423f2747f.tar.bz2 serverdata-6490d9175ba17732cd8a078e40903ee423f2747f.tar.xz serverdata-6490d9175ba17732cd8a078e40903ee423f2747f.zip |
Charge taxes at Tulimshar.
Because Tulimshar shops are still the 'classic' shop style, some shops are
tax-exempt. Right-click sell also allows you to evade taxes.
Now, is this a feature or a bug?
Diffstat (limited to 'npc/003-5/jeweler.txt')
-rw-r--r-- | npc/003-5/jeweler.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/003-5/jeweler.txt b/npc/003-5/jeweler.txt index d0dd74d94..25642c522 100644 --- a/npc/003-5/jeweler.txt +++ b/npc/003-5/jeweler.txt @@ -29,6 +29,7 @@ L_Menu: l("I want to remove all stuff applied to my ring!"), L_Clear, l("Nothing, sorry."), L_Close; + npcshopattach(.name$); openshop; closedialog; close; @@ -194,4 +195,15 @@ OnInit: sellitem GoldenBlackPearlRing, 1000000; // I'm joking of course. Don't tell me you'll pay 1M for... this? end; +// Pay your taxes! +OnBuyItem: + debugmes("Purchase confirmed"); + PurchaseTaxes(); + end; + +OnSellItem: + debugmes("Sale confirmed"); + SaleTaxes(); + end; + } |