Jump to content

Edit History

Please note that revisions older than 365 days are pruned and will no longer show here
stich196

stich196

Hi. I found out that part from Master Chef perk not working at all - "Food and drinks are 50% more effective". From this description i assumed, that values "Food, Health and Drink" from consumed food should be multiplied by that percent. However it's not working in current version. So i tinkered mod by myself and it's now working as intended - i changed buff buffMasterChef as follow and now values multiplying:

<buff name="buffMasterChef" hidden="true" remove_on_death="false">
	<effect_group>
		<requirements>
			<requirement name="ProgressionLevel" progression_name="perkMasterChef" operation="Equals" value="1"/>
		</requirements>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="multiply" value="1.1">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="multiply" value="1.1">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$waterAmountAdd" operation="multiply" value="1.1">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
	</effect_group>
	<effect_group>
		<requirements>
			<requirement name="ProgressionLevel" progression_name="perkMasterChef" operation="Equals" value="2"/>
		</requirements>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="multiply" value="1.3">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="multiply" value="1.3">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$waterAmountAdd" operation="multiply" value="1.3">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
	</effect_group>
	<effect_group>
		<requirements>
			<requirement name="ProgressionLevel" progression_name="perkMasterChef" operation="Equals" value="3"/>
		</requirements>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="multiply" value="1.5">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="multiply" value="1.5">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$waterAmountAdd" operation="multiply" value="1.5">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
	</effect_group>
</buff>

Please, check it by yourself and update mod if needed.

stich196

stich196

Hi. I found out that part from Master Chef perk not working at all - "Food and drinks are 50% more effective". From this description i assumed, that values food, drink and health from consumed food should be multiplied by that percent. However it's not working in current version. So i tinkered mod by myself and it's now working as intended - i changed buff buffMasterChef as follow and now values multiplying:

<buff name="buffMasterChef" hidden="true" remove_on_death="false">
	<effect_group>
		<requirements>
			<requirement name="ProgressionLevel" progression_name="perkMasterChef" operation="Equals" value="1"/>
		</requirements>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="multiply" value="1.1">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="multiply" value="1.1">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$waterAmountAdd" operation="multiply" value="1.1">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
	</effect_group>
	<effect_group>
		<requirements>
			<requirement name="ProgressionLevel" progression_name="perkMasterChef" operation="Equals" value="2"/>
		</requirements>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="multiply" value="1.3">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="multiply" value="1.3">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$waterAmountAdd" operation="multiply" value="1.3">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
	</effect_group>
	<effect_group>
		<requirements>
			<requirement name="ProgressionLevel" progression_name="perkMasterChef" operation="Equals" value="3"/>
		</requirements>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="foodHealthAmount" operation="multiply" value="1.5">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$foodAmountAdd" operation="multiply" value="1.5">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
			<triggered_effect trigger="onSelfPrimaryActionEnd" action="ModifyCVar" cvar="$waterAmountAdd" operation="multiply" value="1.5">
				<requirement name="ItemHasTags" tags="food,drinks"/>
			</triggered_effect>
	</effect_group>
</buff>

Please, check it by yourself and update mod if needed.

×
×
  • Create New...