From 0fe3a6fde2769b55b0019487d9939bf628c760b2 Mon Sep 17 00:00:00 2001 From: gumi <git@gumi.ca> Date: Mon, 10 Aug 2020 14:46:07 -0400 Subject: add debug commands to call the crafting menus --- npc/functions/crafting.txt | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/npc/functions/crafting.txt b/npc/functions/crafting.txt index ba032f41..05a9d9a6 100644 --- a/npc/functions/crafting.txt +++ b/npc/functions/crafting.txt @@ -91,4 +91,27 @@ function script SmithSystem { return .success; } +- script @craft FAKE_NPC,{ + public function DoTailoring { + SmithSystem(CRAFT_TAILORING); + end; + } + + public function DoSmithery { + SmithSystem(CRAFT_SMITHERY); + end; + } + public function OnInit { + if (debug < 1) { + end; + } + + bindatcmd("@tailoring", sprintf("%s::%s", .name$, "DoTailoring")); + bindatcmd("@tailor", sprintf("%s::%s", .name$, "DoTailoring")); + bindatcmd("@smithery", sprintf("%s::%s", .name$, "DoSmithery")); + bindatcmd("@smith", sprintf("%s::%s", .name$, "DoSmithery")); + bindatcmd("@blacksmithery", sprintf("%s::%s", .name$, "DoSmithery")); + end; + } +} -- cgit v1.2.3-70-g09d2