summaryrefslogtreecommitdiff
path: root/npc/functions/quest-debug
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-07-10 16:32:39 +0000
committerJesusaves <cpntb1@ymail.com>2020-07-10 16:32:39 +0000
commit055ae0a6bb07db30f81236b34ae9ecea56249bbe (patch)
tree2c2927704c9b8cd6c0e01fa661e6f590f373c317 /npc/functions/quest-debug
parentb2d6cf5a3c1a1547d1017e45a37e6492639b7f00 (diff)
downloadserverdata-055ae0a6bb07db30f81236b34ae9ecea56249bbe.tar.gz
serverdata-055ae0a6bb07db30f81236b34ae9ecea56249bbe.tar.bz2
serverdata-055ae0a6bb07db30f81236b34ae9ecea56249bbe.tar.xz
serverdata-055ae0a6bb07db30f81236b34ae9ecea56249bbe.zip
Implements Crafting Core system
Recipes etc. not included
Diffstat (limited to 'npc/functions/quest-debug')
-rw-r--r--npc/functions/quest-debug/055-General_Cooking.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/functions/quest-debug/055-General_Cooking.txt b/npc/functions/quest-debug/055-General_Cooking.txt
index ed9fb685..76e23b17 100644
--- a/npc/functions/quest-debug/055-General_Cooking.txt
+++ b/npc/functions/quest-debug/055-General_Cooking.txt
@@ -10,7 +10,7 @@ function script QuestDebug55 {
mes "General_Cooking";
mes "---";
mes l("Quest state: @@", getq(General_Cooking));
- mes l("Known Recipes: @@", array_entries(COOKING_RECIPES));
+ mes l("Known Recipes: @@", array_entries(RECIPES));
next;
select
@@ -33,14 +33,14 @@ function script QuestDebug55 {
getitem RecipeBook, 1;
break;
case 5:
- COOKING_RECIPES[CraftCarpSandwich]=true;
- COOKING_RECIPES[CraftMananaSandwich]=true;
- COOKING_RECIPES[CraftPioulegSandwich]=true;
+ RECIPES[CraftCarpSandwich]=true;
+ RECIPES[CraftMananaSandwich]=true;
+ RECIPES[CraftPioulegSandwich]=true;
break;
case 6:
- COOKING_RECIPES[CraftCarpSandwich]=false;
- COOKING_RECIPES[CraftMananaSandwich]=false;
- COOKING_RECIPES[CraftPioulegSandwich]=false;
+ RECIPES[CraftCarpSandwich]=false;
+ RECIPES[CraftMananaSandwich]=false;
+ RECIPES[CraftPioulegSandwich]=false;
break;
}