summaryrefslogtreecommitdiff
path: root/npc/020-5
diff options
context:
space:
mode:
Diffstat (limited to 'npc/020-5')
-rw-r--r--npc/020-5/bracco.txt15
1 files changed, 14 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;
+
}