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-1/eugene.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-1/eugene.txt')
-rw-r--r-- | npc/003-1/eugene.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/003-1/eugene.txt b/npc/003-1/eugene.txt index c7bb3c580..0936a4afd 100644 --- a/npc/003-1/eugene.txt +++ b/npc/003-1/eugene.txt @@ -87,6 +87,7 @@ L_QuestDone: case 2: speech S_FIRST_BLANK_LINE, l("Earlier I hadn't any, but now that I have the baits, I will be glad to sell some to you!"); + npcshopattach(.name$); openshop; closedialog; } @@ -116,5 +117,16 @@ OnClock0003: restoreshopitem CommonCarp, 3; restoreshopitem GrassCarp, 1; end; + +// Pay your taxes! +OnBuyItem: + debugmes("Purchase confirmed"); + PurchaseTaxes(); + end; + +OnSellItem: + debugmes("Sale confirmed"); + SaleTaxes(); + end; } |