Larian Banner: Baldur's Gate Patch 9
Previous Thread
Next Thread
Print Thread
Joined: Jan 2010
Location: USA
F
enthusiast
OP Offline
enthusiast
F
Joined: Jan 2010
Location: USA
I have two mods with two story goals.

When both mods are enabled, Mod A runs and Mod B does not. Why?

Mod A:
Code
Version 1
SubGoalCombiner SGC_AND
INITSECTION

KBSECTION
//REGION Unlock all recipes when any level loaded
IF
GameStarted(_,_)
AND
DB_IsPlayer(_Player)
THEN
PROC_UnlockAllRecipes();
//END_REGION

PROC
PROC_UnlockAllRecipes()
THEN
UnlockJournalRecipe("AllRecipes_Shared_Origin");
GoalCompleted;
EXITSECTION

ENDEXITSECTION

Mod B:
Code
Version 1
SubGoalCombiner SGC_AND
INITSECTION

KBSECTION
//REGION Unlock all recipes when any level loaded
IF
GameStarted(_,_)
AND
DB_IsPlayer(_Player)
THEN
PROC_UnlockAllRecipes_CraftingOverhaul();
//END_REGION


PROC
PROC_UnlockAllRecipes_CraftingOverhaul()
THEN
UnlockJournalRecipe("AllRecipes_CraftingOverhaul");
GoalCompleted;
EXITSECTION

ENDEXITSECTION

Joined: Jul 2014
Location: East Coast
journeyman
Offline
journeyman
Joined: Jul 2014
Location: East Coast
http://larian.com/forums/ubbthreads.php?ubb=showflat&Number=626850#Post626850

You might wanna put this in this topic, this looks like a mod incompatability issue.

Joined: Jan 2010
Location: USA
F
enthusiast
OP Offline
enthusiast
F
Joined: Jan 2010
Location: USA
Originally Posted by Sinistralis
You might wanna put this in this topic, this looks like a mod incompatability issue.

More likely to be a timing issue compounded by a lack of queuing or parallel execution.

While in a frame:
- Mod A and Mod B are listening for the GameStarted event.
- Mod A catches the event before Mod B due to script order.
- The GameStarted event closes.
- Mod B is still listening for the GameStarted event.

What should happen:
- Mod A and Mod B are listening for the GameStarted event.
- When the GameStarted event fires, Mod A and Mod B are dumped into a processing queue.
- According to script order, Mod A executes, then Mod B executes.
- When the queue is empty, the GameStarted event closes.

Pure supposition. I can't even begin to investigate how the system actually works because there's no runtime debugger.

Joined: Sep 2017
X
journeyman
Offline
journeyman
X
Joined: Sep 2017
I have two mods with scripts running off IF GameStarted(_,_) and they both work together.

Joined: Jan 2010
Location: USA
F
enthusiast
OP Offline
enthusiast
F
Joined: Jan 2010
Location: USA
Originally Posted by Xaelyn
I have two mods with scripts running off IF GameStarted(_,_) and they both work together.

What are the script names?

Joined: Sep 2017
X
journeyman
Offline
journeyman
X
Joined: Sep 2017
__CraftingExposed and __ItemOnLoad

Not sure it matters though.

Joined: Sep 2017
X
journeyman
Offline
journeyman
X
Joined: Sep 2017
I now have a third mod with a third script running off GameStarted and all three work just fine together.

All three of mine have different THEN effects though, so that might be where your issue is.

Last edited by Xaelyn; 11/10/17 12:47 AM.
Joined: Jan 2010
Location: USA
F
enthusiast
OP Offline
enthusiast
F
Joined: Jan 2010
Location: USA
I asked about names because execution order is alphanumeric. Your __CraftingExposed script runs long before __ItemOnLoad, for example. I'll try pushing one script to a later load position.

I'll also try wrapping UnlockJournalRecipe in different procedures. Thanks.

Joined: Sep 2017
X
journeyman
Offline
journeyman
X
Joined: Sep 2017
Three mods; AddItemsOnLoad1, AddItemsOnLoad2, AddItemsOnLoad3
Three Scripts, indentical except in name; __AddItemsOnLoad1, __AddItemsOnLoad2, __AddItemsOnLoad3

Code
//REGION Add items to player inventory on game start
IF
GameStarted(_,_)
AND
DB_IsPlayer(_Player)
THEN
ItemTemplateAddTo("ff74d2bf-8a91-452f-9ea8-f6756bb0d700",(CHARACTERGUID)_Player,1);
//END_REGION


All three executed perfectly, I got three copies of the item.

Joined: Sep 2017
X
journeyman
Offline
journeyman
X
Joined: Sep 2017
Even more specific to your problem:
Two mods and two scripts __CraftingExposed and __CraftingExposedCO + Crafting Overhaul activated

(__CraftingExposed WARNING large code block)
Code
Version 1
SubGoalCombiner SGC_AND
INITSECTION

KBSECTION
//REGION Unlock all recipes on game start
IF
GameStarted(_,_)
AND
DB_IsPlayer((CHARACTERGUID)_Player)
THEN
CharacterUnlockRecipe(_Player,"Anvil_LOOT_MetalShard_A_Hammer",1);CharacterUnlockRecipe(_Player,"Anvil_LOOT_Scraps_Metal_A_Hammer",1);CharacterUnlockRecipe(_Player,"Anvil_LOOT_Scraps_Plate_A",1);CharacterUnlockRecipe(_Player,"Anvil_LOOT_Scraps_Plate_A_Hammer",1);CharacterUnlockRecipe(_Player,"Anvil_LOOT_Scraps_Scale_A",1);CharacterUnlockRecipe(_Player,"Anvil_LOOT_Scraps_Scale_A_Hammer",1);CharacterUnlockRecipe(_Player,"ARM_UniversalShapeshiftingMask",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Antler_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_BlessedWater_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Charming_A",1);
CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_CursedFire_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Explosive_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Fire_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Freezing_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Poison_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Poison_Cloud_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_SlowDown_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Smokescreen_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Static_Could_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Steam_A",1);
CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Stunning_A",1);CharacterUnlockRecipe(_Player,"ArrowShaft_WPN_ArrowHead_Water_A",1);CharacterUnlockRecipe(_Player,"Axe_LOOT_WoodenStick_A",1);CharacterUnlockRecipe(_Player,"Axe2H_LOOT_WoodenStick_A",1);CharacterUnlockRecipe(_Player,"Bone_LAB_MortarPestle_A",1);CharacterUnlockRecipe(_Player,"Bone_Poison_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_A_Gold",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_A_LOOT_Feather_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_A_LOOT_Flour_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_A_LOOT_Panties_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_A_LOOT_Paw_A_Rabbit_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step2_A_CON_Nature_Mushroom_Chanterelle_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step2_A_Gold",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step2_A_LOOT_Feather_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step2_A_LOOT_Flour_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step2_A_LOOT_Hair_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step2_A_LOOT_Handkerchief_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step2_A_LOOT_Panties_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step2_A_LOOT_Paw_A_Rabbit_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step2_A_LOOT_Rope_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_CON_Herb_Mushroom_Jellyfish_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_CON_Nature_Mushroom_Chanterelle_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_Gold",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_LOOT_Feather_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_LOOT_Feather_A_Fancy",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_LOOT_Flour_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_LOOT_Hair_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_LOOT_Handkerchief_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_LOOT_Panties_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_LOOT_Paw_A_Rabbit_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Air_Step3_A_LOOT_Rope_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_A_CON_Herb_Mushroom_C",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_A_CON_Herb_Stardust_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_A_CON_Herb_Stardust_B",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_A_CON_Herb_Whisperwood_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_A_LOOT_MetalShard_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_A_LOOT_PieceOfRock_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_A_TOOL_Intestines_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_CON_Herb_Mushroom_C",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_CON_Herb_Stardust_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_CON_Herb_Stardust_B",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_CON_Herb_Whisperwood_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_CON_Nature_Mushroom_TrumpetOfDeath_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_LOOT_Clay_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_LOOT_MetalShard_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_LOOT_PieceOfRock_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_LOOT_Slime_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step2_A_TOOL_Intestines_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_Augmentor",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_CON_Herb_Mushroom_C",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_CON_Herb_Stardust_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_CON_Herb_Stardust_B",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_CON_Herb_Whisperwood_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_CON_Nature_Mushroom_TrumpetOfDeath_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_LOOT_Clay_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_LOOT_MetalShard_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_LOOT_PieceOfRock_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_LOOT_Slime_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Earth_Step3_A_TOOL_Intestines_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_A_LOOT_Antler_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_A_LOOT_Claw_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_A_LOOT_Claw_A_Sharp",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_A_LOOT_Claw_Crab_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_A_LOOT_Tooth_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_A_LOOT_Tusk_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_ITEM_Nails",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_LOOT_Antler_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_LOOT_Antler_A_Adult",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_LOOT_Claw_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_LOOT_Claw_A_Sharp",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_LOOT_Claw_Crab_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_LOOT_Tooth_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_LOOT_Tooth_A_Sharp",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_LOOT_Tusk_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step2_A_LOOT_VoidEggSpike_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_ITEM_Nails",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Antler_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Antler_A_Adult",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Claw_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Claw_A_Sharp",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Claw_Crab_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Fang_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Needle_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Tooth_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Tooth_A_Sharp",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_Tusk_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Fire_Step3_A_LOOT_VoidEggSpike_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_A_LOOT_Antler_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_A_LOOT_Antler_A_Adult",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_A_LOOT_Foot_Chicken_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_A_LOOT_Foot_Chicken_A_Big",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_A_LOOT_Sinew_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_A_LOOT_Tail_A_Rat_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_A_LOOT_Tail_A_Rat_A_Long",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_A_Metal",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_LOOT_Antler_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_LOOT_Antler_A_Adult",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_LOOT_Foot_Chicken_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_LOOT_Foot_Chicken_A_Big",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_LOOT_Leg_Anthropod_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_LOOT_Sinew_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_LOOT_Tail_A_Rat_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_LOOT_Tail_A_Rat_A_Long",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_Metal",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step2_A_Oil",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_LOOT_Antler_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_LOOT_Antler_A_Adult",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_LOOT_Foot_Chicken_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_LOOT_Foot_Chicken_A_Big",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_LOOT_Leg_Anthropod_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_LOOT_Shell_B_PilgrimsShell",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_LOOT_Sinew_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_LOOT_Tail_A_Rat_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_LOOT_Tail_A_Rat_A_Long",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_Metal",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Life_Step3_A_Oil",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_A_CON_Food_Meat_Raw_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_A_CON_Herb_Mushroom_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_A_LOOT_Eye_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_A_LOOT_Skull_Human_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_A_TOOL_Intestines_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_CON_BodyPart_Hand",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_CON_Food_Meat_Raw_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_CON_Giblets_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_CON_Herb_Mushroom_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_JUNK_FishSkeleton_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_LOOT_DirtySocks_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_LOOT_Eye_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_LOOT_Skull_Human_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_LOOT_Skull_Human_A_Ancient",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step2_A_TOOL_Intestines_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step3_A_CON_Food_Meat_Raw_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step3_A_CON_Giblets_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step3_A_CON_Herb_Mushroom_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step3_A_JUNK_FishSkeleton_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step3_A_LOOT_Eye_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step3_A_LOOT_Goo_SewerSpider_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step3_A_LOOT_Skull_Human_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step3_A_LOOT_Skull_Human_A_Ancient",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Shadow_Step3_A_TOOL_Intestines_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_A_CON_Herb_Mushroom_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_A_CON_Herb_Mushroom_B",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_A_FOOD_FishA",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_A_FOOD_FishB",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_A_FOOD_FishD",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_A_LOOT_Essence_Life_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_A_LOOT_Essence_Life_Step2_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_A_LOOT_Essence_Life_Step3_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_CON_Herb_Mushroom_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_CON_Herb_Mushroom_B",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_FOOD_FishA",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_FOOD_FishB",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_FOOD_FishC",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_FOOD_FishD",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_HAR_Fish_Star",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_LOOT_Essence_Life_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_LOOT_Essence_Life_Step2_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step2_A_LOOT_Essence_Life_Step3_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_CON_Herb_Mushroom_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_CON_Herb_Mushroom_B",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_FOOD_FishA",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_FOOD_FishB",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_FOOD_FishC",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_FOOD_FishD",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_FOOD_FishE",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_HAR_Fish_Star",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_LOOT_Essence_Life_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_LOOT_Essence_Life_Step2_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Essence_Water_Step3_A_LOOT_Essence_Life_Step3_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_A_CON_Food_Garlic",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_A_CON_Food_Pepper_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_A_TOOL_Figurine_Wood_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_A_TOOL_Toy_Wood_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step2_A_CON_Food_Garlic",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step2_A_CON_Food_Pepper_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step2_A_FoodVoidwokenFish",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step2_A_LOOT_Wheat_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step2_A_TOOL_Figurine_Wood_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step2_A_TOOL_Toy_Wood_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step3_A_CON_Food_Garlic",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step3_A_CON_Food_Pepper_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step3_A_FoodVoidwokenFish",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step3_A_Honey",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step3_A_LOOT_Wheat_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step3_A_TOOL_Figurine_Wood_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Soul_Tormented_Step3_A_TOOL_Toy_Wood_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_CON_BodyPart_Hand",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_CON_Food_Carrot_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_CON_Food_Grapes_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_CON_Herb_Mushroom_D",1);
CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_FOOD_FishC",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_FUR_Raanaar_Tablet_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_ITEM_Log_Livewood",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_LOOT_Eye_A_Creepy",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_LOOT_Paw_A_Rabbit_A_Lucky",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_LOOT_Scales_Animal_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_LOOT_SourcePuppet_Bead_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_LOOT_Tusk_A_Large",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_LOOT_Wool_A",1);CharacterUnlockRecipe(_Player,"BOOK_Paper_Sheet_A_LOOT_Source_Orb_LOOT_Yarn_A_Wool_A",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_ElectricFence",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_LighningBolt",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_Projectile_ChainLightning",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_ProjectileStrike_DazingBolt",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_Shout_BlindingRadiance",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_Shout_FavourableWind",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_Target_Apportation",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_Target_PressureSpike",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_Target_ShockingTouch",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_Teleportation",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_Teleportation_Netherswap",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_A_SCROLL_Tornado_1",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_Step2_A_SCROLL_Projectile_Superconductor",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Air_Blank_Step2_A_SCROLL_Storm_Lightning",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_AcidSpores",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_Fortify",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_FossilStrike",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_PoisonDart",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_Quake_Earthquake",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_Shout_Contamination",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_Shout_MendMetal",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_Shout_PoisonWave",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_Shout_ReactiveArmor",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_Summon_ArtilleryPlant",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_Target_RockSpikes",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_A_SCROLL_Target_WormTremor",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_Step2_A_SCROLL_Projectile_PyroclasticEruption",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_Step2_A_SCROLL_Shout_SiphonPoison",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Earth_Blank_Step2_A_SCROLL_Wall_LivingWall",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Fireball",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_FlamingDaggers",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Haste",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Projectile_InfectiousFlame",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Shout_FlamingTongues",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Shout_Ignition",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Shout_Supernova",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Summon_FireSlug",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Target_BurnMyEyes",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Target_Fireblood",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Target_FireWhip",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Target_SpontaneousCombustion",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_A_SCROLL_Zone_LaserRay",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_Step2_A_SCROLL_MeteorShower",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_Step2_A_SCROLL_Shout_FireBrand",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Fire_Blank_Step2_A_SCROLL_Target_FlamingCrescendo",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Necromancy_Blank_A_SCROLL_Shout_BoneCage",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Necromancy_Blank_A_SCROLL_Summon_BloatedCorpse",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Necromancy_Blank_A_SCROLL_Summon_BonePile",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Necromancy_Blank_A_SCROLL_Target_BlackShroud",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Necromancy_Blank_A_SCROLL_Target_DeathsDoor",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Necromancy_Blank_A_SCROLL_Target_DeathWish",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Necromancy_Blank_Step2_A_SCROLL_Cone_SilencingStare",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Necromancy_Blank_Step2_A_SCROLL_Shout_NecromancerTotems",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Necromancy_Blank_Step2_A_SCROLL_Target_GraspOfTheStarved",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Projectile_LaunchOilBlob",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Shout_BullHorns",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Shout_ChameleonSkin",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Shout_MedusaHead",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Shout_ShedSkin",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Shout_SpiderLegs",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Shout_SteelSkin",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Shout_Wings",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Target_ChickenTouch",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Target_TentacleLash",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_A_SCROLL_Teleportation_SwapGround",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_Step2_A_SCROLL_Shout_Apotheosis",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_Step2_A_SCROLL_Target_DemonicBargain",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_Step2_A_SCROLL_Target_Equalize",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Polymorph_Blank_Step2_A_SCROLL_Target_StripResistance",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Projectile_DimensionalBolt",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Ranger_Charm",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Summon_Incarnate",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Summon_PlanarGateway",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Summon_TotemFromSurface",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Target_Harmony",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Target_PowerInfusion",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Target_RangedInfusion",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Target_ShadowInfusion",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Target_SoulMate",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_A_SCROLL_Target_Supercharge",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_Step2_A_SCROLL_Shout_CloseTheDoor",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_Step2_A_SCROLL_Storm_Ethereal",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_Step2_A_SCROLL_Target_Cannibalize",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Summoning_Blank_Step2_A_SCROLL_Target_WarpInfusion",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Cone_SteamLance",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_HailStrike",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Projectile_ChainHeal",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Projectile_IceFan",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Rain",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_RegenerateStart",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Shout_FrostAura",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Shout_GlobalCooling",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Target_ArcaneStitch",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Target_CryogenicStasis",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Target_FrostyShell",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_A_SCROLL_Target_WinterBlast",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_Step2_A_SCROLL_Cone_Shatter",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Water_Blank_Step2_A_SCROLL_Shout_IceBreaker",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Witchcraft_Blank_A_SCROLL_Rain_Blood",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Witchcraft_Blank_A_SCROLL_Target_BloodBubble",1);
CharacterUnlockRecipe(_Player,"BOOK_Skill_Witchcraft_Blank_A_SCROLL_Target_DecayingTouch",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Witchcraft_Blank_A_SCROLL_Target_Infect",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Witchcraft_Blank_A_SCROLL_Target_MosquitoSwarm",1);CharacterUnlockRecipe(_Player,"BOOK_Skill_Witchcraft_Blank_A_SCROLL_Target_ShacklesOfPain",1);CharacterUnlockRecipe(_Player,"CON_BodyPart_Face_Dwarf_LOOT_Source_Orb",1);CharacterUnlockRecipe(_Player,"CON_BodyPart_Face_Elf_LOOT_Source_Orb",1);CharacterUnlockRecipe(_Player,"CON_BodyPart_Face_Human_LOOT_Source_Orb",1);CharacterUnlockRecipe(_Player,"CON_BodyPart_Face_Lizard_LOOT_Source_Orb",1);CharacterUnlockRecipe(_Player,"CON_Drink_Cup_A_Empty_CON_Drink_Bottle_Water_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Cup_A_Empty_CON_Food_Grapes_A",1);
CharacterUnlockRecipe(_Player,"CON_Drink_Cup_A_Empty_CON_Food_Lemon_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Cup_A_Empty_FUR_Bar_Barrel_A_Beer_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Cup_A_Empty_FUR_Bar_Barrel_A_Wine_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Cup_A_Empty_HUM_Well_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Mug_A_Empty_CON_Drink_Bottle_Water_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Mug_A_Empty_CON_Food_Grapes_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Mug_A_Empty_CON_Food_Lemon_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Mug_A_Empty_FUR_Bar_Barrel_A_Beer_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Mug_A_Empty_FUR_Bar_Barrel_A_Wine_A",1);CharacterUnlockRecipe(_Player,"CON_Drink_Mug_A_Empty_HUM_Well_A",1);
CharacterUnlockRecipe(_Player,"CON_Food_Dinner_A_CON_Drink_Mug_A_Beer",1);CharacterUnlockRecipe(_Player,"CON_Food_Dinner_A_CON_Food_TomatoSauce_A",1);CharacterUnlockRecipe(_Player,"CON_Food_Fries_Cold_A_FUR_BoilingPot_A",1);CharacterUnlockRecipe(_Player,"CON_Food_Honey_Jar_A_CON_Drink_Cup_A_Milk",1);CharacterUnlockRecipe(_Player,"CON_Food_MilkJug_A_CON_Drink_Cup_A_Empty",1);CharacterUnlockRecipe(_Player,"CON_Food_Potato_A_CON_Drink_Cup_A_Milk",1);CharacterUnlockRecipe(_Player,"CON_Food_Potato_A_FUR_BoilingPot_A",1);CharacterUnlockRecipe(_Player,"CON_Food_Potato_A_TOOL_Hammer",1);CharacterUnlockRecipe(_Player,"CON_Food_Potato_Mash_Cold_A_FUR_BoilingPot_A",1);CharacterUnlockRecipe(_Player,"CON_Food_PotatoBoiled_A_CON_Drink_Cup_A_Milk",1);
CharacterUnlockRecipe(_Player,"CON_Food_Tomato_A_TOOL_Hammer",1);CharacterUnlockRecipe(_Player,"CON_Food_TomatoSauce_A_CON_Ingred_Dough_A",1);CharacterUnlockRecipe(_Player,"CON_Herb_Drudanae_CON_Herb_Augmentor_A",1);CharacterUnlockRecipe(_Player,"CON_Herb_Drudanae_CON_Herb_Farhangite_A",1);CharacterUnlockRecipe(_Player,"CON_Herb_Drudanae_CON_Nature_Mushroom_Calocera_A",1);CharacterUnlockRecipe(_Player,"CON_Herb_Drudanae_CON_Nature_Mushroom_Puffball_A",1);CharacterUnlockRecipe(_Player,"CON_Herb_Drudanae_QUEST_DreamerPipe",1);CharacterUnlockRecipe(_Player,"CON_Herb_Stardust_A_FUR_BoilingPot_A",1);CharacterUnlockRecipe(_Player,"CON_Herb_Stardust_A_LAB_MortarPestle_A",1);CharacterUnlockRecipe(_Player,"CON_Herb_Stardust_B_LAB_MortarPestle_A",1);
CharacterUnlockRecipe(_Player,"CON_Herb_Tea_A_CON_Drink_Cup_A_Water",1);CharacterUnlockRecipe(_Player,"CON_Herb_Tea_A_CON_Drink_Mug_Water_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Air_Res_A_CON_Potion_Air_Res_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Air_Res_A_CON_Potion_Air_Res_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_Air_Res_Large_A_CON_Potion_Air_Res_Large_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Air_Res_Medium_A_CON_Potion_Air_Res_Medium_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Air_Res_Medium_A_CON_Potion_Air_Res_Medium_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_Earth_Res_A_CON_Potion_Earth_Res_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Earth_Res_A_CON_Potion_Earth_Res_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_Earth_Res_Large_A_CON_Potion_Earth_Res_Large_A",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Earth_Res_Medium_A_CON_Potion_Earth_Res_Medium_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Earth_Res_Medium_A_CON_Potion_Earth_Res_Medium_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_BlackRose_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Farhangite_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_B",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_C",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_D",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_E",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_Jellyfish_A",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Whisperwood_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_YarrowFlower",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_Amadouvier_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_AmethystDeceiver_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_Boletus_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_Calocera_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_Chanterelle_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_Puffball_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_TrumpetOfDeath_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CONT_Barrel_Ooze",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Air_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Air_Step2_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Air_Step3_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Earth_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Earth_Step2_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Earth_Step3_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Fire_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Fire_Step2_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Fire_Step3_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Water_A",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Water_Step2_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_LOOT_Essence_Water_Step3_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Fire_Res_A_CON_Potion_Fire_Res_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Fire_Res_A_CON_Potion_Fire_Res_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_Fire_Res_Large_A_CON_Potion_Fire_Res_Large_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Fire_Res_Medium_A_CON_Potion_Fire_Res_Medium_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Fire_Res_Medium_A_CON_Potion_Fire_Res_Medium_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_MagicArmor_Boost_A_CON_Potion_MagicArmor_Boost_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_MagicArmor_Boost_A_CON_Potion_MagicArmor_Boost_A_Step2",1);CharacterUnlockRecipe(_Player,"CON_Potion_MagicArmor_Boost_Medium_A_CON_Potion_MagicArmor_Boost_Medium_A",1);
CharacterUnlockRecipe(_Player,"CON_Potion_MagicArmor_Boost_Medium_A_CON_Potion_MagicArmor_Boost_Medium_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_PhysicalArmor_Boost_A_CON_Potion_PhysicalArmor_Boost_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_PhysicalArmor_Boost_A_CON_Potion_PhysicalArmor_Boost_A_Step2",1);CharacterUnlockRecipe(_Player,"CON_Potion_PhysicalArmor_Boost_Medium_A_CON_Potion_PhysicalArmor_Boost_Medium_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_PhysicalArmor_Boost_Medium_A_CON_Potion_PhysicalArmor_Boost_Medium_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_Poison_A_CON_Potion_Poison_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Poison_A_CON_Potion_Poison_A_Step2",1);CharacterUnlockRecipe(_Player,"CON_Potion_Poison_A_TOOL_Dye_Red",1);CharacterUnlockRecipe(_Player,"CON_Potion_Poison_Huge_A_CON_Potion_Poison_Huge_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Poison_Large_A_CON_Potion_Poison_Large_A",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Poison_Large_A_CON_Potion_Poison_Large_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_Poison_Large_A_TOOL_Dye_Red",1);CharacterUnlockRecipe(_Player,"CON_Potion_Poison_Medium_A_CON_Potion_Poison_Medium_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Poison_Medium_A_CON_Potion_Poison_Medium_A_Step2",1);CharacterUnlockRecipe(_Player,"CON_Potion_Poison_Medium_A_TOOL_Dye_Red",1);CharacterUnlockRecipe(_Player,"CON_Potion_Water_Res_A_CON_Potion_Water_Res_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Water_Res_A_CON_Potion_Water_Res_A_Step3",1);CharacterUnlockRecipe(_Player,"CON_Potion_Water_Res_Large_A_CON_Potion_Water_Res_Large_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Water_Res_Medium_A_CON_Potion_Water_Res_Medium_A",1);CharacterUnlockRecipe(_Player,"CON_Potion_Water_Res_Medium_A_CON_Potion_Water_Res_Medium_A_Step3",1);
CharacterUnlockRecipe(_Player,"CupEmpty_FOOD_Apple",1);CharacterUnlockRecipe(_Player,"CupEmpty_FOOD_Orange",1);CharacterUnlockRecipe(_Player,"CuttingTool_LOOT_Antler_A",1);CharacterUnlockRecipe(_Player,"CuttingTool_LOOT_Antler_A_Adult",1);CharacterUnlockRecipe(_Player,"CuttingTool_LOOT_Bone_A",1);CharacterUnlockRecipe(_Player,"CuttingTool_LOOT_Hide_Animal_A",1);CharacterUnlockRecipe(_Player,"CuttingTool_LOOT_MetalShard_A",1);CharacterUnlockRecipe(_Player,"CuttingTool_LOOT_PieceOfRock_A",1);CharacterUnlockRecipe(_Player,"CuttingTool_LOOT_WoodenBranch_A",1);CharacterUnlockRecipe(_Player,"CuttingTool_LOOT_WoodenStick_A",1);
CharacterUnlockRecipe(_Player,"CuttingTool_Tooth",1);CharacterUnlockRecipe(_Player,"Dagger_CON_Food_Potato_A",1);CharacterUnlockRecipe(_Player,"Dagger_LOOT_Hide_Animal_A",1);CharacterUnlockRecipe(_Player,"Eggs_FUR_BoilingPot_A",1);CharacterUnlockRecipe(_Player,"Eggs_Oven",1);CharacterUnlockRecipe(_Player,"FOOD_Apple_CON_Ingred_Dough_A",1);CharacterUnlockRecipe(_Player,"FOOD_Cheese_CON_Ingred_Dough_A",1);CharacterUnlockRecipe(_Player,"FOOD_Pumpkin_C_FUR_BoilingPot_A",1);CharacterUnlockRecipe(_Player,"FOOD_Pumpkin_FUR_BoilingPot_A",1);CharacterUnlockRecipe(_Player,"FOOD_PumpkinPart_FUR_BoilingPot_A",1);
CharacterUnlockRecipe(_Player,"FoodFish_CON_Ingred_Dough_A",1);CharacterUnlockRecipe(_Player,"FUR_Bar_Barrel_A_Beer_A_ITEM_EmptyBottle",1);CharacterUnlockRecipe(_Player,"FUR_Bar_Barrel_A_Wine_A_ITEM_EmptyBottle",1);CharacterUnlockRecipe(_Player,"FUR_BoilingPot_A_CON_Food_Potato_Mash_Cold_A",1);CharacterUnlockRecipe(_Player,"FUR_BoilingPot_A_FoodFish",1);CharacterUnlockRecipe(_Player,"FUR_Bucket_A_CONT_Barrel_A_Water",1);CharacterUnlockRecipe(_Player,"FUR_Bucket_A_Hum_Well_A",1);CharacterUnlockRecipe(_Player,"FUR_Bucket_A_Milk_CON_Drink_Cup_A_Empty",1);CharacterUnlockRecipe(_Player,"FUR_SpinningWheel_LOOT_Hair_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_AirResistancePotion",1);
CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_CON_Herb_Mushroom_Jellyfish_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_LOOT_Essence_Air_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_LOOT_Essence_Earth_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_LOOT_Essence_Step2_Air_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_LOOT_Essence_Step2_Earth_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_LOOT_Essence_Step3_Air_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_LOOT_Essence_Step3_Earth_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_LOOT_Soul_Tormented_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_A_TOOL_Intestines_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Flask_Empty_A_Oil",1);
CharacterUnlockRecipe(_Player,"GRN_Ingredient_Flask_Empty_A_Poison",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Holy_Empty_HAR_Fish_Star",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Holy_Empty_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Love_Empty_A_FARM_Beehive_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Love_Empty_A_Honey",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Love_Empty_A_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_ITEM_BrokenBottle",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_ITEM_Nails",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_LOOT_Essence_Fire_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_LOOT_Essence_Step2_Fire_A",1);
CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_LOOT_Essence_Step2_Water_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_LOOT_Essence_Step3_Fire_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_LOOT_Essence_Step3_Water_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_LOOT_Essence_Water_A",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_Poison",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_A_RottenEggs",1);CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_MindMaggots",1);CharacterUnlockRecipe(_Player,"Hammer_ITEM_EmptyBottle",1);CharacterUnlockRecipe(_Player,"Honey_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"Honey_WPN_ArrowHead_A",1);
CharacterUnlockRecipe(_Player,"ITEM_BottleWithOil_GRN_Ingredient_Fuse_A",1);CharacterUnlockRecipe(_Player,"ITEM_CookingPot_LTS_Campfire_A",1);CharacterUnlockRecipe(_Player,"ITEM_EmptyBottle_CONT_Barrel_A_Water",1);CharacterUnlockRecipe(_Player,"ITEM_EmptyBottle_Hum_Well_A",1);CharacterUnlockRecipe(_Player,"ITEM_EmptyBottle_Oil",1);CharacterUnlockRecipe(_Player,"ITEM_Log_BLD_Humans_Sawmill_Machine",1);CharacterUnlockRecipe(_Player,"ITEM_Log_CuttingTool",1);CharacterUnlockRecipe(_Player,"ITEM_Log_Livewood_Wine_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"ITEM_Nails_ArmorShoes",1);CharacterUnlockRecipe(_Player,"ITEM_Pillow_CuttingTool",1);
CharacterUnlockRecipe(_Player,"ITEM_Soap_ITEM_Key",1);CharacterUnlockRecipe(_Player,"Knife_CON_Food_Potato_A",1);CharacterUnlockRecipe(_Player,"Knife_LOOT_Hide_Animal_A",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_A_Boost_Armor_Amulet",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_A_Boost_Armor_Belt",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_A_Boost_Armor_Boots",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_A_Boost_Armor_Gloves",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_A_Boost_Armor_Helmet",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_A_Boost_Armor_Pants",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_A_Boost_Armor_Ring",1);
CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_A_Boost_Armor_Upperbody",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_Axe",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_Bow",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_Club",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_Crossbow",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_Dagger",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_Spear",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_Sword",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_TwoHandedAxe",1);CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_TwoHandedMaces",1);
CharacterUnlockRecipe(_Player,"LOOT_AtaraxianArtifacts_C_TwoHandedSword",1);CharacterUnlockRecipe(_Player,"LOOT_Bedlinen_Folded_A_CuttingTool",1);CharacterUnlockRecipe(_Player,"LOOT_ClawFinger_A_Drinks",1);CharacterUnlockRecipe(_Player,"LOOT_ClawFinger_A_Food",1);CharacterUnlockRecipe(_Player,"LOOT_ClawFinger_A_POTION_Giant_Healing_Potion",1);CharacterUnlockRecipe(_Player,"LOOT_ClawFinger_A_POTION_Healing_Elixir",1);CharacterUnlockRecipe(_Player,"LOOT_ClawFinger_A_POTION_Huge_Healing_Potion",1);CharacterUnlockRecipe(_Player,"LOOT_ClawFinger_A_POTION_Large_Healing_Potion",1);CharacterUnlockRecipe(_Player,"LOOT_ClawFinger_A_POTION_Medium_Healing_Potion",1);CharacterUnlockRecipe(_Player,"LOOT_ClawFinger_A_POTION_Minor_Healing_Potion",1);
CharacterUnlockRecipe(_Player,"LOOT_Essence_Air_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Air_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Air_Step2_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Air_Step3_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Earth_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Earth_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Earth_Step2_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Earth_Step3_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Fire_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Fire_A_WPN_ArrowHead_A",1);
CharacterUnlockRecipe(_Player,"LOOT_Essence_Fire_Step2_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Fire_Step3_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Step2_Air_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Step2_Earth_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Step2_Fire_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Step2_Water_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Step3_Air_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Step3_Earth_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Step3_Fire_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Step3_Water_A_WPN_ArrowHead_A",1);
CharacterUnlockRecipe(_Player,"LOOT_Essence_Water_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Water_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Water_Step2_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Essence_Water_Step3_A_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"LOOT_Flour_A_Milk",1);CharacterUnlockRecipe(_Player,"LOOT_Flour_A_Milk_Eggs",1);CharacterUnlockRecipe(_Player,"LOOT_Flour_A_Water",1);CharacterUnlockRecipe(_Player,"LOOT_Flour_A_WaterWell",1);CharacterUnlockRecipe(_Player,"LOOT_Hair_A_LOOT_Hair_A",1);CharacterUnlockRecipe(_Player,"LOOT_Ingred_CrossbowWithoutString_LOOT_String_Bow_A",1);
CharacterUnlockRecipe(_Player,"LOOT_Jar_A_FARM_Beehive_A",1);CharacterUnlockRecipe(_Player,"LOOT_MetalShard_A_LOOT_Handkerchief_A",1);CharacterUnlockRecipe(_Player,"LOOT_MetalShard_A_LOOT_Scraps_Cloth_A",1);CharacterUnlockRecipe(_Player,"LOOT_MetalShard_A_LOOT_Scraps_Leather_A",1);CharacterUnlockRecipe(_Player,"LOOT_Needle_A_LOOT_Needle_A",1);CharacterUnlockRecipe(_Player,"LOOT_Needle_A_LOOT_Thread_A",1);CharacterUnlockRecipe(_Player,"LOOT_Needle_Thread_A_LOOT_Scraps_Cloth_A",1);CharacterUnlockRecipe(_Player,"LOOT_Needle_Thread_A_LOOT_Scraps_Cloth_A_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"LOOT_Needle_Thread_A_LOOT_Scraps_Leather_A",1);CharacterUnlockRecipe(_Player,"LOOT_Needle_Thread_A_LOOT_Scraps_Metal_A",1);
CharacterUnlockRecipe(_Player,"LOOT_Rope_A_LOOT_Rope_A",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Giant_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Giant_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Large_LOOT_Rune_Flame_Large",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Large_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Large_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Medium_LOOT_Rune_Flame_Medium",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Medium_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Medium_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Small_LOOT_Rune_Flame_Small",1);
CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Small_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Flame_Small_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Giant_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Giant_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Large_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Large_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Large_LOOT_Rune_Frost_Large",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Medium_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Medium_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Medium_LOOT_Rune_Frost_Medium",1);
CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Small_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Small_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Frost_Small_LOOT_Rune_Frost_Small",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Giant_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Giant_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Large_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Large_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Large_LOOT_Rune_Masterwork_Large",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Medium_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Medium_LOOT_Rune_Frame_Transforming",1);
CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Medium_LOOT_Rune_Masterwork_Medium",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Small_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Small_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Masterwork_Small_LOOT_Rune_Masterwork_Small",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Giant_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Giant_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Large_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Large_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Large_LOOT_Rune_Rock_Large",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Medium_LOOT_Rune_Frame_Power",1);
CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Medium_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Medium_LOOT_Rune_Rock_Medium",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Small_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Small_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Rock_Small_LOOT_Rune_Rock_Small",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Giant_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Giant_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Large_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Large_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Large_LOOT_Rune_Thunder_Large",1);
CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Medium_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Medium_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Medium_LOOT_Rune_Thunder_Medium",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Small_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Small_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Thunder_Small_LOOT_Rune_Thunder_Small",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Giant_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Giant_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Large_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Large_LOOT_Rune_Frame_Transforming",1);
CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Large_LOOT_Rune_Venom_Large",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Medium_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Medium_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Medium_LOOT_Rune_Venom_Medium",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Small_LOOT_Rune_Frame_Power",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Small_LOOT_Rune_Frame_Transforming",1);CharacterUnlockRecipe(_Player,"LOOT_Rune_Venom_Small_LOOT_Rune_Venom_Small",1);CharacterUnlockRecipe(_Player,"LOOT_Scraps_Leather_A_LOOT_Rope_A",1);CharacterUnlockRecipe(_Player,"LOOT_Scraps_Livewood_Void_A_CON_Potion_Poison_A",1);CharacterUnlockRecipe(_Player,"LOOT_Scraps_Metal_A_LOOT_Scraps_Wood_A",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Wood_A_Mush_Oven",1);CharacterUnlockRecipe(_Player,"LOOT_Scraps_Wood_A_Water",1);CharacterUnlockRecipe(_Player,"LOOT_Scraps_Wood_A_WaterWell",1);CharacterUnlockRecipe(_Player,"LOOT_Sinew_LOOT_Sinew",1);CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_GRN_Grenade_ClusterBomb_A",1);CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_GRN_Grenade_Ice_A",1);CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_GRN_Grenade_Molotov_A",1);CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_GRN_Grenade_OilFlask_A",1);CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_GRN_Grenade_PoisonFlask_A",1);CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_GRN_Grenade_WaterBalloon_A",1);
CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_WPN_Arrow_Fire_A",1);CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_WPN_Arrow_Water_A",1);CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_WPN_ArrowHead_Fire_A",1);CharacterUnlockRecipe(_Player,"LOOT_Source_Orb_WPN_ArrowHead_Water_A",1);CharacterUnlockRecipe(_Player,"LOOT_Wheat_A_CON_Drink_Cup_A_Milk",1);CharacterUnlockRecipe(_Player,"LOOT_Wheat_A_LAB_MortarPestle_A",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_ArrowHead",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_BLD_Humans_Sawmill_Machine",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_Dagger",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_HAR_Shell",1);
CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_Knife",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_LOOT_MetalShard_A",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_LOOT_PieceOfRock_A",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_LOOT_Scraps_Cloth_A",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_LOOT_Scraps_Leather_A",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenBranch_A_PiecesOfRock",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenStick_A_BLD_Humans_Sawmill_Machine",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenStick_A_Dagger",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenStick_A_Knife",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenStick_A_LOOT_PieceOfRock_A",1);
CharacterUnlockRecipe(_Player,"LOOT_WoodenStick_A_LOOT_Skull_Bird_A",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenStick_A_LOOT_Skull_Human_A",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenStick_A_LOOT_Skull_Human_A_Ancient",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenStick_A_LOOT_String_Bow_A",1);CharacterUnlockRecipe(_Player,"LOOT_WoodenStick_A_LOOT_WoodenBranch_A",1);CharacterUnlockRecipe(_Player,"LOOT_Wool_A_LOOT_Wool_A",1);CharacterUnlockRecipe(_Player,"LOOT_Yarn_A_Wool_A_LOOT_Yarn_A_Wool_A",1);CharacterUnlockRecipe(_Player,"Meat_FUR_BoilingPot_A",1);CharacterUnlockRecipe(_Player,"Meat_Oven",1);CharacterUnlockRecipe(_Player,"Oil_WPN_Arrow_A",1);
CharacterUnlockRecipe(_Player,"Oil_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"Oil_WPN_ArrowHead_Fire_A",1);CharacterUnlockRecipe(_Player,"Oven_CON_Food_Potato_Mash_Cold_A",1);CharacterUnlockRecipe(_Player,"Oven_CON_Ingred_Dough_A",1);CharacterUnlockRecipe(_Player,"Oven_CON_Ingred_Dough_Apple_A",1);CharacterUnlockRecipe(_Player,"Oven_CON_Ingred_Dough_CheeseBread_A",1);CharacterUnlockRecipe(_Player,"Oven_CON_Ingred_Dough_Cyseal_A",1);CharacterUnlockRecipe(_Player,"Oven_CON_Ingred_Dough_Pizza_A",1);CharacterUnlockRecipe(_Player,"Oven_FoodFish",1);CharacterUnlockRecipe(_Player,"Poison_Axe",1);
CharacterUnlockRecipe(_Player,"Poison_Bow",1);CharacterUnlockRecipe(_Player,"Poison_Club",1);CharacterUnlockRecipe(_Player,"Poison_Crossbow",1);CharacterUnlockRecipe(_Player,"Poison_Dagger",1);CharacterUnlockRecipe(_Player,"Poison_Drinks",1);CharacterUnlockRecipe(_Player,"Poison_Food",1);CharacterUnlockRecipe(_Player,"Poison_Knife",1);CharacterUnlockRecipe(_Player,"Poison_Spear",1);CharacterUnlockRecipe(_Player,"Poison_Staff",1);CharacterUnlockRecipe(_Player,"Poison_Sword",1);
CharacterUnlockRecipe(_Player,"Poison_TwoHandedAxe",1);CharacterUnlockRecipe(_Player,"Poison_TwoHandedSword",1);CharacterUnlockRecipe(_Player,"Poison_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"Poison_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"POTION_Huge_Healing_Potion_POTION_Large_Healing_Potion",1);CharacterUnlockRecipe(_Player,"POTION_Large_Healing_Potion_POTION_Large_Healing_Potion",1);CharacterUnlockRecipe(_Player,"POTION_Large_Healing_Potion_POTION_Large_Healing_Potion_Step3",1);CharacterUnlockRecipe(_Player,"POTION_Medium_Healing_Potion_POTION_Medium_Healing_Potion",1);CharacterUnlockRecipe(_Player,"POTION_Medium_Healing_Potion_POTION_Medium_Healing_Potion_Step2",1);CharacterUnlockRecipe(_Player,"POTION_Medium_Healing_Potion_POTION_Medium_Healing_Potion_Step3",1);
CharacterUnlockRecipe(_Player,"POTION_Medium_ResistAll_Potion_POTION_Medium_ResistAll_Potion",1);CharacterUnlockRecipe(_Player,"POTION_Minor_Healing_Potion_POTION_Minor_Healing_Potion",1);CharacterUnlockRecipe(_Player,"POTION_Minor_Healing_Potion_POTION_Minor_Healing_Potion_Step2",1);CharacterUnlockRecipe(_Player,"POTION_Minor_Healing_Potion_POTION_Minor_Healing_Potion_Step3",1);CharacterUnlockRecipe(_Player,"POTION_Minor_ResistAll_Potion_POTION_Minor_ResistAll_Potion",1);CharacterUnlockRecipe(_Player,"POTION_Minor_ResistAll_Potion_POTION_Minor_ResistAll_Potion_Step3",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Air_Res_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Air_Res_Large_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Air_Res_Medium_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Earth_Res_As",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Earth_Res_Large_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Earth_Res_Medium_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Fire_Res_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Fire_Res_Large_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Fire_Res_Medium_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_MagicArmor_Boost_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_MagicArmor_Boost_Medium_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_PhysicalArmor_Boost_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_PhysicalArmor_Boost_Medium_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Poison_As",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Poison_Huge_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Poison_Large_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Poison_Medium_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Water_Res_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Water_Res_Large_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Water_Res_Medium_As",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Huge_Healing_Potions",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Large_Healing_Potions",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Medium_Healing_Potions",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Medium_ResistAll_Potions",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_Healing_Potions",1);CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_ResistAll_Potions",1);CharacterUnlockRecipe(_Player,"PUZ_Statue_Angel_Head_PUZ_Statue_Angel_Broken",1);CharacterUnlockRecipe(_Player,"QUEST_Blackroot_QUEST_AtaraxianBowl",1);CharacterUnlockRecipe(_Player,"Quest_Eternals_Armor",1);CharacterUnlockRecipe(_Player,"QUEST_FunnyMeat_FOOD_FishA_Voidwoken",1);CharacterUnlockRecipe(_Player,"QUEST_FunnyMeat_FOOD_FishB_Voidwoken",1);CharacterUnlockRecipe(_Player,"QUEST_FunnyMeat_FOOD_FishC_Voidwoken",1);CharacterUnlockRecipe(_Player,"QUEST_FunnyMeat_FOOD_FishD_Voidwoken",1);CharacterUnlockRecipe(_Player,"QUEST_FunnyMeat_FOOD_FishE_Voidwoken",1);
CharacterUnlockRecipe(_Player,"QUEST_FunnyMeat_FOOD_FishF_Voidwoken",1);CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Alertness_FOOD_FishA_Voidwoken",1);CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Alertness_Potent_QUEST_DreamerPipe",1);CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Alertness_QUEST_DreamerPipe",1);CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Courage_QUEST_DreamerPipe",1);CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Enlightenment_FOOD_FishC_Voidwoken",1);CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Enlightenment_Potent_QUEST_DreamerPipe",1);CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Enlightenment_QUEST_DreamerPipe",1);CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Ferocity_FOOD_FishB_Voidwoken",1);CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Ferocity_Potent_QUEST_DreamerPipe",1);
CharacterUnlockRecipe(_Player,"QUEST_Herbmix_Ferocity_QUEST_DreamerPipe",1);CharacterUnlockRecipe(_Player,"QUEST_Lancet_Bloody_QUEST_AtaraxianBowl_QUEST_Blackroot",1);CharacterUnlockRecipe(_Player,"QUEST_Lancet_Bloody_QUEST_AtaraxianBowl_With_Blackroot",1);CharacterUnlockRecipe(_Player,"QUEST_Oil_Machine_CONT_Barrel_A",1);CharacterUnlockRecipe(_Player,"QUEST_RC_BI_AncientForge_ITEM_Rich_Cup_A_Silver",1);CharacterUnlockRecipe(_Player,"QUEST_RC_BI_AncientForge_ITEM_Rich_Glass_A_Silver",1);CharacterUnlockRecipe(_Player,"QUEST_RC_BI_AncientForge_LOOT_Ore_A_Silver_A",1);CharacterUnlockRecipe(_Player,"QUEST_RC_BI_AncientForge_LOOT_OreBar_A_Silver_A",1);CharacterUnlockRecipe(_Player,"QUEST_RC_DF_WitchPotion_TOOL_Dye_Red",1);CharacterUnlockRecipe(_Player,"QUEST_Tea_Brand_A_QUEST_Teapot",1);
CharacterUnlockRecipe(_Player,"QUEST_Tea_Brand_B_QUEST_Teapot",1);CharacterUnlockRecipe(_Player,"QUEST_Tea_Brand_C_QUEST_Teapot",1);CharacterUnlockRecipe(_Player,"QUEST_UNI_LOOT_RC_DF_WitchEye_CON_Nature_Mushroom_Boletus_A_CON_Herb_Augmentor_A",1);CharacterUnlockRecipe(_Player,"QUEST_VaultLever_Broken_A_QUEST_RC_BI_LeverShaft",1);CharacterUnlockRecipe(_Player,"QUEST_VaultLever_Broken_B_QUEST_RC_BI_LeverShaft",1);CharacterUnlockRecipe(_Player,"QUEST_VaultLever_Broken_C_QUEST_RC_BI_LeverShaft",1);CharacterUnlockRecipe(_Player,"Rock_Beer_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"SCROLL_Resurrect_QUEST_Resurrection_Idol_Inert",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_BlessedSmokeCloud_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_BlessedSmokeCloud_B",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_BlessedSmokeCloud_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_BreathingBubble",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_CursedElectricInfusion_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_CursedElectricInfusion_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_CursedElectricInfusion_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_ElectricInfusion",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_EvasiveAura_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_EvasiveAura_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_EvasiveAura_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_JellyfishSkin_A",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_JellyfishSkin_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_JellyfishSkin_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_MassBreathingBubbles_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_MassBreathingBubbles_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_MassBreathingBubbles_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_SmokeCover",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_VacuumAura_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_VacuumAura_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_VacuumAura_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_VacuumTouch",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_Vaporize",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Air_Windwalker",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_AcidInfusion_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_AcidInfusion_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_AcidInfusion_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_Condense",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_CorrosiveSpray_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_CorrosiveSpray_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_CorrosiveSpray_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_CorrosiveTouch",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_DustBlast_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_DustBlast_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_DustBlast_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_MassOilyCarapace_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_MassOilyCarapace_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_MassOilyCarapace_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_OilyCarapace",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_PoisonInfusion",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_PoisonousSkin_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_PoisonousSkin_B",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_PoisonousSkin_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_ThrowDust",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_VenomCoating",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_VenomousAura_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_VenomousAura_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Earth_VenomousAura_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_CorpseExplosion",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_DeployMassTraps_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_DeployMassTraps_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_DeployMassTraps_C",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_Fireblood",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_FireInfusion",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_FlamingSkin_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_FlamingSkin_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_FlamingSkin_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_LaunchExplosiveTrap",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_MassCorpseExplosion_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_MassCorpseExplosion_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_MassCorpseExplosion_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_MassSabotage_A",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_MassSabotage_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_MassSabotage_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_MasterOfSparks_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_MasterOfSparks_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_MasterOfSparks_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_NecrofireInfusion_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_NecrofireInfusion_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_NecrofireInfusion_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_Sabotage",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Fire_SparkingSwings",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Necromancy_RainOfBlood",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_BloodStorm_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_BloodStorm_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_BloodStorm_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_CleanseWounds",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_Cryotherapy",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_HealingTears",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_IceInfusion_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_IceInfusion_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_IceInfusion_C",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_IceSkin_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_IceSkin_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_IceSkin_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_MassCleanseWounds_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_MassCleanseWounds_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_MassCleanseWounds_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_MassCryotherapy_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_MassCryotherapy_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_MassCryotherapy_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_VampiricHunger",1);
CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_VampiricHungerAura_A",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_VampiricHungerAura_B",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_VampiricHungerAura_C",1);CharacterUnlockRecipe(_Player,"SKILLBOOK_Water_WaterInfusion",1);CharacterUnlockRecipe(_Player,"Sword_LOOT_WoodenStick_A",1);CharacterUnlockRecipe(_Player,"Sword2H_LOOT_WoodenStick_A",1);CharacterUnlockRecipe(_Player,"TOOL_Dye_Red_CON_Potion_Poison_Void_A",1);CharacterUnlockRecipe(_Player,"TOOL_Hammer_ITEM_Nails",1);CharacterUnlockRecipe(_Player,"TOOL_Intestines_A_Water",1);CharacterUnlockRecipe(_Player,"TOOL_Pouch_Dust_Bone_A_TOOL_Pouch_Dust_Star_A",1);
CharacterUnlockRecipe(_Player,"TOOL_Pouch_Dust_Bone_A_TOOL_Pouch_Dust_Star_B",1);CharacterUnlockRecipe(_Player,"TOOL_Shovel_Improvised_A",1);CharacterUnlockRecipe(_Player,"TOOL_Tong_A_LOOT_Scraps_Cloth_A",1);CharacterUnlockRecipe(_Player,"TOOL_Tong_A_LOOT_Scraps_Leather_A",1);CharacterUnlockRecipe(_Player,"Water_Gold_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"Water_Metal_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"Water_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"Water_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"Water_WPN_ArrowHead_Fire_A",1);CharacterUnlockRecipe(_Player,"WaterWell_Gold_TOOL_Pouch_Dust_Pixie_A",1);
CharacterUnlockRecipe(_Player,"WaterWell_Metal_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"WaterWell_WPN_Arrow_A",1);CharacterUnlockRecipe(_Player,"WaterWell_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"WaterWell_WPN_ArrowHead_Fire_A",1);CharacterUnlockRecipe(_Player,"Wood_Oil_TOOL_Pouch_Dust_Pixie_A",1);CharacterUnlockRecipe(_Player,"WPN_ArrowShaft_A_WPN_ArrowHead_A",1);CharacterUnlockRecipe(_Player,"WPN_UNIQUE_AtaraxianScythe",1);
//END_REGION
EXITSECTION

ENDEXITSECTION
ParentTargetEdge "__Start"


(__CraftingExposedCO WARNING large code block)
Code
Version 1
SubGoalCombiner SGC_AND
INITSECTION

KBSECTION
//REGION Unlock all recipes on game start
IF
GameStarted(_,_)
AND
DB_IsPlayer((CHARACTERGUID)_Player)
THEN
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Broken_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Labjar_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Glassjunk_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Jar_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Plate1_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Plate2_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Plate3_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Glass1_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Glass2_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Plate4_Oven",1);
CharacterUnlockRecipe(_Player,"LOOT_Scraps_Empty_Potions_Plate5_Oven",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_MagicArmor_Boost_Large",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_PhysicalArmor_Boost_Large",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_AmethystDeceiver_A2",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_Boletus_A2",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_Calocera_A2",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Farhangite_A2",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_Puffball_A2",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_LOOT_Feather_A_Speed",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_LOOT_Feather_A_Speed2",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Strength_Boost_Medium",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Dexterity_Boost_Medium",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Intelligence_Boost_Medium",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Constitution_Boost_Medium",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Perception_Boost_Medium",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_CON_Potion_Speed_Boost_Medium",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Potions_Combine1",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Potions_Combine2",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Potions_Combine3",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Potions_Combine4",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Potions_Combine5",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Potions_Combine6",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Medium_Potions_Combine1",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Medium_Potions_Combine2",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Medium_Potions_Combine3",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Medium_Potions_Combine4",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Medium_Potions_Combine5",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Medium_Potions_Combine6",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Large_Potions_Combine1",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Large_Potions_Combine2",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Large_Potions_Combine3",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Large_Potions_Combine4",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Large_Potions_Combine5",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Large_Potions_Combine6",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_AllStats_Medium",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Medium_AllStats_Large",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Minor_ResistAll_Potions_Combine",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Medium_ResistAll_Potions_Combine",1);
CharacterUnlockRecipe(_Player,"POTIONMIXING_POTION_Large_ResistAll_Potions_Combine",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Nature_Mushroom_ResistAll",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_A_2",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_C_2",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_A_3",1);
CharacterUnlockRecipe(_Player,"CON_Potion_Empty_A_CON_Herb_Mushroom_C_3",1);
CharacterUnlockRecipe(_Player,"LOOT_Pickaxe_Craft",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_LeatherArmor1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_LeatherArmor2",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_LeatherArmor3",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_LeatherArmor4",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_LeatherArmor5",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_LeatherArmor6",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_ClothArmor1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_ClothArmor2",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_MetalArmor1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_MetalArmor2",1);
CharacterUnlockRecipe(_Player,"Oven_Scrap_Amulet",1);
CharacterUnlockRecipe(_Player,"Oven_Scrap_BoostedAmulet",1);
CharacterUnlockRecipe(_Player,"Oven_Scrap_Ring",1);
CharacterUnlockRecipe(_Player,"Oven_Scrap_Ring2",1);
CharacterUnlockRecipe(_Player,"Oven_Scrap_BoostedRing",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_1",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_1_2",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_2",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_2_2",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_3",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_3_2",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_4",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_4_2",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_5",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_5_2",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_6",1);
CharacterUnlockRecipe(_Player,"Empty_Amulet_Boost_6_2",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_1",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_1_2",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_2",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_2_2",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_3",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_3_2",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_4",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_4_2",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_5",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_5_2",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_6",1);
CharacterUnlockRecipe(_Player,"Empty_Ring_Boost_6_2",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons2",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons3",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons4",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons5",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons6",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons7",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons8",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons9",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons10",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons11",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons12",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons13",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons14",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons15",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Weapons16",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap__Wood_Junk1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk2",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk3",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk4",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk5",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk6",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk7",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk8",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk9",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk10",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk10_Sword",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk11",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk12",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk13",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Wood_Junk14",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Metal_Junk1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Metal_Junk2",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Metal_Junk3",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Metal_Junk4",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Metal_Junk5",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Metal_Junk6",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Metal_Junk7",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Metal_Junk8",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Metal_Junk8_MetalShard",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Pillow",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Cloth_Junk1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Cloth_Junk2",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap_Cloth_Junk3",1);
CharacterUnlockRecipe(_Player,"HammerAnvil_Craft_Goldbar_1",1);
CharacterUnlockRecipe(_Player,"HammerAnvil_Craft_Goldbar_2",1);
CharacterUnlockRecipe(_Player,"HammerAnvil_Craft_Goldbar_3",1);
CharacterUnlockRecipe(_Player,"HammerAnvil_Craft_Goldbar_4",1);
CharacterUnlockRecipe(_Player,"HammerAnvil_Craft_Goldbar_5",1);
CharacterUnlockRecipe(_Player,"HammerAnvil_Craft_Goldbar_6",1);
CharacterUnlockRecipe(_Player,"HammerAnvil_Craft_Goldbar_7",1);
CharacterUnlockRecipe(_Player,"HammerAnvil_Craft_Goldbar_8",1);
CharacterUnlockRecipe(_Player,"Boost_Whetstone_Weapon_1",1);
CharacterUnlockRecipe(_Player,"Boost_Whetstone_Weapon_2",1);
CharacterUnlockRecipe(_Player,"Boost_Whetstone_Weapon_3",1);
CharacterUnlockRecipe(_Player,"Boost_Whetstone_Weapon_4",1);
CharacterUnlockRecipe(_Player,"Boost_Whetstone_Weapon_4_5",1);
CharacterUnlockRecipe(_Player,"Boost_Whetstone_Weapon_5",1);
CharacterUnlockRecipe(_Player,"Boost_Whetstone_Weapon_6",1);
CharacterUnlockRecipe(_Player,"Boost_Whetstone_Weapon_7",1);
CharacterUnlockRecipe(_Player,"Boost_Whetstone_Weapon_8",1);
CharacterUnlockRecipe(_Player,"Craft_Sinew",1);
CharacterUnlockRecipe(_Player,"Craft_Strongsinew",1);
CharacterUnlockRecipe(_Player,"Craft_Strongsinew_2",1);
CharacterUnlockRecipe(_Player,"Boost_bow_Weapon_9",1);
CharacterUnlockRecipe(_Player,"Boost_crossbow_Weapon_10",1);
CharacterUnlockRecipe(_Player,"LOOT_Hammer_Craft",1);
CharacterUnlockRecipe(_Player,"Craft_Weapon_Dagger_1",1);
CharacterUnlockRecipe(_Player,"Craft_Weapon_Spear_1",1);
CharacterUnlockRecipe(_Player,"Craft_Weapon_Sword_1",1);
CharacterUnlockRecipe(_Player,"Craft_Weapon_Axe_1",1);
CharacterUnlockRecipe(_Player,"Craft_Weapon_Mace_1",1);
CharacterUnlockRecipe(_Player,"Craft_Weapon_TwoHandedAxe_1",1);
CharacterUnlockRecipe(_Player,"Craft_Weapon_TwoHandedSword_1",1);
CharacterUnlockRecipe(_Player,"Craft_Weapon_TwoHandedMace_1",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_Helmet_1",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_Helmet_2",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_Helmet_3",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_Boots_1",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_Boots_2",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_Boots_3",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_gloves_1",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_gloves_2",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_gloves_3",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_Pants_1",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_Pants_2",1);
CharacterUnlockRecipe(_Player,"Craft_Armour_Pants_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor1",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor1_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor1_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor2_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor2_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor3_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor3_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor4",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor4_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor4_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor5",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor5_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor5_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor6",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor6_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_LeatherArmor6_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_ClothArmor1",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_ClothArmor1_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_ClothArmor1_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_ClothArmor2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_ClothArmor2_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_ClothArmor2_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_MetalArmor1",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_MetalArmor1_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_MetalArmor1_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_MetalArmor2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_MetalArmor2_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_MetalArmor2_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_Shield1",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_Shield1_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_Shield1_3",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_Shield2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_Shield2_2",1);
CharacterUnlockRecipe(_Player,"Boost_Scrap_Shield2_3",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield1_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield2",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield2_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield3",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield3_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield4",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield4_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield5",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield5_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield6",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield6_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield7",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield7_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield8",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield8_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield9",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield9_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield10",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield10_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield11",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield11_1",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield12",1);
CharacterUnlockRecipe(_Player,"Boost_Elemental_Shield12_1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Scrap__Rock1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_LOOT_MetalShard_A",1);
CharacterUnlockRecipe(_Player,"Pickaxe_LOOT_Bone_A",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Shortstick",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_1",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_2",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_3",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_4",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_5",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_6",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_7",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_8",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_8_1",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_9",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowhead_9_1",1);
CharacterUnlockRecipe(_Player,"Pickaxe_Rope",1);
CharacterUnlockRecipe(_Player,"Craft_EmptyCylinderGrenade",1);
CharacterUnlockRecipe(_Player,"Craft_EmptyRoundGrenade",1);
CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_Smoke",1);
CharacterUnlockRecipe(_Player,"GRN_Ingredient_Cylinder_Empty_Smoke_2",1);
CharacterUnlockRecipe(_Player,"GRN_Ingredient_Round_Empty_ArmorPierce",1);
CharacterUnlockRecipe(_Player,"GRN_Ingredient_Bottle_Molotov",1);
CharacterUnlockRecipe(_Player,"Station_Ingredient_Hugerock",1);
CharacterUnlockRecipe(_Player,"Station_Ingredient_WoodPile",1);
CharacterUnlockRecipe(_Player,"Station_Ingredient_Wheel",1);
CharacterUnlockRecipe(_Player,"Station_Campfire",1);
CharacterUnlockRecipe(_Player,"Station_Boilingpot",1);
CharacterUnlockRecipe(_Player,"Station_Oven",1);
CharacterUnlockRecipe(_Player,"Station_Workbench",1);
CharacterUnlockRecipe(_Player,"Station_magiccraft",1);
CharacterUnlockRecipe(_Player,"Station_magiccraft_2",1);
CharacterUnlockRecipe(_Player,"Station_magiccraft_3",1);
CharacterUnlockRecipe(_Player,"Station_demoncraft",1);
CharacterUnlockRecipe(_Player,"Station_Well",1);
CharacterUnlockRecipe(_Player,"Station_Whetstone",1);
CharacterUnlockRecipe(_Player,"Station_Spiningwheel",1);
CharacterUnlockRecipe(_Player,"Station_Anvil",1);
CharacterUnlockRecipe(_Player,"LOOT_Chest_1",1);
CharacterUnlockRecipe(_Player,"LOOT_Chest_2",1);
CharacterUnlockRecipe(_Player,"LOOT_Chest_3",1);
CharacterUnlockRecipe(_Player,"LOOT_Chest_4",1);
CharacterUnlockRecipe(_Player,"LOOT_Chest_5",1);
CharacterUnlockRecipe(_Player,"LOOT_Chest_6",1);
CharacterUnlockRecipe(_Player,"LOOT_Chest_7",1);
CharacterUnlockRecipe(_Player,"LOOT_Chest_8",1);
CharacterUnlockRecipe(_Player,"LOOT_Chest_9",1);
CharacterUnlockRecipe(_Player,"LOOT_Foodbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Skillbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Runebag",1);
CharacterUnlockRecipe(_Player,"LOOT_Arrowbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Junkbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Ingredientbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Weaponbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Armorbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Potionbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Questbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Valuablesbag",1);
CharacterUnlockRecipe(_Player,"LOOT_Keybag",1);
CharacterUnlockRecipe(_Player,"Craft_MortarAndPestle",1);
CharacterUnlockRecipe(_Player,"FOOD_Cinnamon",1);
CharacterUnlockRecipe(_Player,"FOOD_StrangeCinnamon",1);
CharacterUnlockRecipe(_Player,"FOOD_Thyme",1);
CharacterUnlockRecipe(_Player,"FOOD_Basil",1);
CharacterUnlockRecipe(_Player,"FOOD_Safran",1);
CharacterUnlockRecipe(_Player,"FOOD_AppleFrenchToast",1);
CharacterUnlockRecipe(_Player,"FOOD_CinnamonAppleMuffin",1);
CharacterUnlockRecipe(_Player,"FOOD_StrangeCinnamonApplePie",1);
CharacterUnlockRecipe(_Player,"FOOD_FishSoup",1);
CharacterUnlockRecipe(_Player,"FOOD_FishSoup_2",1);
CharacterUnlockRecipe(_Player,"FOOD_FishSoup_3",1);
CharacterUnlockRecipe(_Player,"FOOD_FishSoup_4",1);
CharacterUnlockRecipe(_Player,"FOOD_FishSoup_5",1);
CharacterUnlockRecipe(_Player,"FOOD_SafranOrangeCake",1);
CharacterUnlockRecipe(_Player,"FOOD_CheeseRavioli",1);
CharacterUnlockRecipe(_Player,"FOOD_VegetableSoup",1);
CharacterUnlockRecipe(_Player,"FOOD_FruitSalad",1);
CharacterUnlockRecipe(_Player,"FOOD_GarlicBread",1);
CharacterUnlockRecipe(_Player,"FOOD_Brudet",1);
CharacterUnlockRecipe(_Player,"FOOD_Brudet_2",1);
CharacterUnlockRecipe(_Player,"FOOD_Brudet_3",1);
CharacterUnlockRecipe(_Player,"FOOD_Brudet_4",1);
CharacterUnlockRecipe(_Player,"FOOD_Brudet_5",1);
CharacterUnlockRecipe(_Player,"FOOD_CrabQuiche",1);
CharacterUnlockRecipe(_Player,"FOOD_Gregada",1);
CharacterUnlockRecipe(_Player,"FOOD_Menemen",1);
CharacterUnlockRecipe(_Player,"FOOD_Kebab",1);
CharacterUnlockRecipe(_Player,"FOOD_Goulash",1);
CharacterUnlockRecipe(_Player,"FOOD_Potaufeu",1);
CharacterUnlockRecipe(_Player,"FOOD_Khinkali",1);
CharacterUnlockRecipe(_Player,"FOOD_Bigos",1);
CharacterUnlockRecipe(_Player,"FOOD_Paella",1);
CharacterUnlockRecipe(_Player,"FOOD_Currywurst",1);
CharacterUnlockRecipe(_Player,"FOOD_Clamchowder",1);
CharacterUnlockRecipe(_Player,"Craft_InkpotandQuill",1);
CharacterUnlockRecipe(_Player,"Craft_AccesoryKit",1);
CharacterUnlockRecipe(_Player,"Craft_MagicInkpotandQuill",1);
CharacterUnlockRecipe(_Player,"Craft_MagicNeedleThread",1);
CharacterUnlockRecipe(_Player,"Craft_MagicSoap",1);
CharacterUnlockRecipe(_Player,"TOOL_Hammer_ITEM_Nails_2",1);
CharacterUnlockRecipe(_Player,"Book_ResurrectionSkillbook",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_1",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_2",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_3",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_4",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_5",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_6",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_7",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_8",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_9",1);
CharacterUnlockRecipe(_Player,"Book_CraftEmptyBook_10",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_1",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_2",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_3",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_4",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_5",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_6",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_7",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_8",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_9",1);
CharacterUnlockRecipe(_Player,"Book_ScrapEmptyBook_10",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_1",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_2",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_3",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_4",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_5",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_6",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_7",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_8",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_9",1);
CharacterUnlockRecipe(_Player,"Book_CleanseSkillBook_10",1);
CharacterUnlockRecipe(_Player,"Book_CraftScroll_1",1);
CharacterUnlockRecipe(_Player,"Book_RandomScroll_Water_1",1);
CharacterUnlockRecipe(_Player,"Book_RandomScroll_Fire_1",1);
CharacterUnlockRecipe(_Player,"Book_RandomScroll_Earth_1",1);
CharacterUnlockRecipe(_Player,"Book_RandomScroll_Air_1",1);
CharacterUnlockRecipe(_Player,"Book_RandomScroll_Necromancy_1",1);
CharacterUnlockRecipe(_Player,"Book_RandomScroll_Polymorph_1",1);
CharacterUnlockRecipe(_Player,"Book_RandomScroll_Summoning_1",1);
CharacterUnlockRecipe(_Player,"Book_RandomScroll_Warrior_1",1);
CharacterUnlockRecipe(_Player,"Book_RandomScroll_Ranger_1",1);
CharacterUnlockRecipe(_Player,"Book_Scroll_Necromancy_VoodooDoll",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Bear_1",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Bear_1_2",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Bull_2",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Bull_2_2",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Deer_3",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Deer_3_2",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Tiger_4",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Tiger_4_2",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Wolf_5",1);
CharacterUnlockRecipe(_Player,"Book_SummonCompanion_Wolf_5_2",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Fire_1",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Fire_2",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Fire_3",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Water_1",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Water_2",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Water_3",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Air_1",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Air_2",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Air_3",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Poison_1",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Poison_2",1);
CharacterUnlockRecipe(_Player,"Craft_Wand_Poison_3",1);
CharacterUnlockRecipe(_Player,"Poison_Wand_1",1);
CharacterUnlockRecipe(_Player,"Poison_Wand_2",1);
CharacterUnlockRecipe(_Player,"Poison_Wand_3",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Fire_1",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Fire_2",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Fire_3",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Water_1",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Water_2",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Water_3",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Air_1",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Air_2",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Air_3",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Poison_1",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Poison_2",1);
CharacterUnlockRecipe(_Player,"Craft_Staff_Poison_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Dagger_Finnese",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Knife_Finnese",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Bow_Finnese",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_CrossBow_Finnese",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Sword_Strength",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Mace_Strength",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_Finnese",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Axe_Strength",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HSword_Strength",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HMace_Strength",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HAxe_Strength",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Staff_Intelligence",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_WhirlwindSkill",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_WhirlwindSkill_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HSword_WhirlwindSkill",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HSword_WhirlwindSkill_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Dagger_SerratedSkill",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Bow_SniperSkill",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Crossbow_SniperSkill",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_Twohanded",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_Twohanded_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_Twohanded_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HSword_Twohanded",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HSword_Twohanded_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HSword_Twohanded_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HMace_Twohanded",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HMace_Twohanded_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HMace_Twohanded_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HAxe_Twohanded",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HAxe_Twohanded_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HAxe_Twohanded_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Dagger_DualWielding",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Dagger_DualWielding_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Dagger_DualWielding_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Knife_DualWielding",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Knife_DualWielding_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Knife_DualWielding_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Bow_Ranged",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Bow_Ranged_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Bow_Ranged_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_CrossBow_Ranged",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_CrossBow_Ranged_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_CrossBow_Ranged_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Sword_Bleeding",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Mace_Cripple",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Mace_Cripple_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_Bleeding",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Axe_Bleeding",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Sword_Wet",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Mace_Oiled",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Axe_Poisoned",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_TwhoHandedAxe_Acid",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HSword_Chilled",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HMace_Petrified",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_Fear",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_Fear_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_Fear_3",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_Spear_Fear_4",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HAxe_Knockdown",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HAxe_Knockdown_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HSword_Knockdown",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HSword_Knockdown_2",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HMace_Knockdown",1);
CharacterUnlockRecipe(_Player,"Boost__Weapon_2HMace_Knockdown_2",1);
CharacterUnlockRecipe(_Player,"Craft_Workbench_Trap_ElectrifiedWater",1);
CharacterUnlockRecipe(_Player,"Craft_Workbench_Scope_Lens",1);
CharacterUnlockRecipe(_Player,"Craft_Workbench_Trigger",1);
CharacterUnlockRecipe(_Player,"Craft_Workbench_EmptyBarrel",1);
CharacterUnlockRecipe(_Player,"Craft_Workbench_WaterBarrel",1);
CharacterUnlockRecipe(_Player,"Craft_Workbench_OozeBarrel",1);
CharacterUnlockRecipe(_Player,"Craft_Workbench_OilBarrel",1);
CharacterUnlockRecipe(_Player,"Craft_Workbench_PortalGargoyle",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_Air",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_Earth",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_Fire",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_Poison",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_Water",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_2H_Air",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_2H_Earth",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_2H_Fire",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_2H_Poison",1);
CharacterUnlockRecipe(_Player,"Craft_Sword_2H_Water",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_Air",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_Earth",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_Fire",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_Poison",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_Water",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_2H_Air",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_2H_Earth",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_2H_Fire",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_2H_Poison",1);
CharacterUnlockRecipe(_Player,"Craft_Axe_2H_Water",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_Air",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_Earth",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_Fire",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_Poison",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_Water",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_2H_Air",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_2H_Earth",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_2H_Fire",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_2H_Posion",1);
CharacterUnlockRecipe(_Player,"Craft_Mace_2H_Water",1);
CharacterUnlockRecipe(_Player,"Craft_Spear_Air",1);
CharacterUnlockRecipe(_Player,"Craft_Spear_Earth",1);
CharacterUnlockRecipe(_Player,"Craft_Spear_Fire",1);
CharacterUnlockRecipe(_Player,"Craft_Spear_Poison",1);
CharacterUnlockRecipe(_Player,"Craft_Spear_Water",1);
CharacterUnlockRecipe(_Player,"Craft_Barricade",1);
CharacterUnlockRecipe(_Player,"Craft_BlessedSoap",1);
CharacterUnlockRecipe(_Player,"Craft_FaceRipper",1);
CharacterUnlockRecipe(_Player,"Cleanse_Gems_1",1);
CharacterUnlockRecipe(_Player,"Cleanse_Gems_2",1);
CharacterUnlockRecipe(_Player,"Cleanse_Gems_3",1);
CharacterUnlockRecipe(_Player,"Cleanse_Gems_4",1);
CharacterUnlockRecipe(_Player,"Cleanse_Gems_5",1);
CharacterUnlockRecipe(_Player,"Cleanse_Gems_6",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_1",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_1_2",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_2",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_2_2",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_3",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_3_2",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_4",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_4_2",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_5",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_5_2",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_6",1);
CharacterUnlockRecipe(_Player,"Cleanse_Essences_6_2",1);
CharacterUnlockRecipe(_Player,"Cleanse_Transmute_Essence_1",1);
CharacterUnlockRecipe(_Player,"Cleanse_Transmute_Essence_2",1);
CharacterUnlockRecipe(_Player,"Cleanse_Transmute_Essence_3",1);
CharacterUnlockRecipe(_Player,"Cleanse_Transmute_Essence_4",1);
CharacterUnlockRecipe(_Player,"Cleanse_Transmute_Essence_5",1);
CharacterUnlockRecipe(_Player,"Cleanse_Transmute_Essence_6",1);
CharacterUnlockRecipe(_Player,"Craft_Transmutor_1",1);
CharacterUnlockRecipe(_Player,"Craft_Transmutor_2",1);
CharacterUnlockRecipe(_Player,"Craft_Transmutor_3",1);
//END_REGION
EXITSECTION

ENDEXITSECTION
ParentTargetEdge "__Start"


Both execute fine and all recipes are unlocked. Leads me to believe the problem lies in either PROC's or UnlockJournalRecipe


Link Copied to Clipboard
Powered by UBB.threads™ PHP Forum Software 7.7.5