summaryrefslogtreecommitdiff
path: root/npc/003-5/jeweler.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/003-5/jeweler.txt')
-rw-r--r--npc/003-5/jeweler.txt12
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;
+
}