diff options
Diffstat (limited to 'npc/003-1/neko.txt')
-rw-r--r-- | npc/003-1/neko.txt | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/npc/003-1/neko.txt b/npc/003-1/neko.txt index 610c49d71..a5818baba 100644 --- a/npc/003-1/neko.txt +++ b/npc/003-1/neko.txt @@ -49,8 +49,10 @@ } closedialog; - if (@menu == 1) + if (@menu == 1) { + npcshopattach(.name$); shop .name$; + } goodbye; close; @@ -93,4 +95,14 @@ OnClock2359: restoreshopitem EmptyBox, 2; end; +// Pay your taxes! +OnBuyItem: + debugmes("Purchase confirmed"); + PurchaseTaxes(); + end; + +OnSellItem: + debugmes("Sale confirmed"); + SaleTaxes(); + end; } |