• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Recipe Tag Value

OgreLXXV

Refugee
This may be a silly question, but in progression.xml, what does the "value" represent in the "RecipeTagUnlocked" passive_effect lines? All the others make sense, but I can't figure out what it does for this effect.

 
This may be a silly question, but in progression.xml, what does the "value" represent in the "RecipeTagUnlocked" passive_effect lines? All the others make sense, but I can't figure out what it does for this effect.


Hi OgreLXXV

They are the recipes that are unlocked through the benefit of skills.
Example:

<passive_effect name = "RecipeTagUnlocked" operation = "base_set" level = "1,5" value = "1" tags = "meleeToolSalvageT1Wrench" />

Here you can unlock the crafting of the wrench from level 1 to 5.
Hope that helps you.
Regards

 
Hi OgreLXXV

They are the recipes that are unlocked through the benefit of skills.
Example:

<passive_effect name = "RecipeTagUnlocked" operation = "base_set" level = "1,5" value = "1" tags = "meleeToolSalvageT1Wrench" />

Here you can unlock the crafting of the wrench from level 1 to 5.
Hope that helps you.
Regards
What does the value="1" portion refer to?

 
The 1 is a cvar of types. Its like a true/false cvar. You start at cvar 0, then getting that progression perk, it sets that cvar to 1, which is what the code is looking for to say you are able to craft that recipe.

 
Back
Top