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 /npc/024-9 | |
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
Diffstat (limited to 'npc/024-9')
-rw-r--r-- | npc/024-9/barkeeper.txt | 12 |
1 files changed, 12 insertions, 0 deletions
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; + } |