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

Food recipes!

ZzzSmileYzzZ

New member
Is it possible to set some recipes to be unlock at a certain player level?

For example: I would like the bacon&eggs to be unlock at player level 10 and the meatstew to be unlock at player level 30.

If it's possible, how can I make the changes?

Cheers,

 
example

Code:
<perk name="Cooking" always_fire="true" icon="ui_game_symbol_campfire" description_key="cookingDesc" title_key="cooking" max_level="2" skill_point_cost_multiplier="0" skill_point_cost_per_level="10" group="crafting">
	<requirement perk_level="1" required_player_level="10" />
	<requirement perk_level="2" required_player_level="30" />
	<recipe name="baconAndEggs" unlock_level="1"/>
	<recipe name="meatStew" unlock_level="2"/>
</perk>
 
Last edited by a moderator:
Thank you very much sir, really appreciated, also very good job on your mod, our community members love it very much.

Cheers,

 
Another question regarding recipes, is it possible to get the glass Jar back when cooking items with it. For example, when you are making the boiled meat, is it possible for the empty jar to be created into the player inventory when use?

Cheers,

 
Another question regarding recipes, is it possible to get the glass Jar back when cooking items with it. For example, when you are making the boiled meat, is it possible for the empty jar to be created into the player inventory when use?
Cheers,
Sorry but nope that is not possible.

 
Back
Top