DiggityDan
Refugee
Good Afternoon,
I used Google Gemini to design a perk under the General Perks Tab. It "works", but not as intended. The perk is designed to reduce the player's crafting time. It does reduce the crafting, but you don't even need to assign a skill point to this "Reduced Crafting Time" perk, you automatically have it. does anyone know a fix? Code and screenshots below for reference.
you can see below i dont have a skill point into the new perk. I don't have any other mods. This is mod is being uploaded to a server for testing. Also, how can i change where it says "Crafting Time 0%"?
<?xml version="1.0" encoding="UTF-8"?>
<configs>
<!--
This mod adds a new perk called "Reduced Crafting Time" to the game.
This perk is designed to instantly reduce crafting time by 100% (making it instant)
at its single level.
It is now correctly placed under the "attGeneralPerks" attribute,
which corresponds to the "General Perks" tab in the game's UI,
as found in your provided progression.xml.
-->
<append xpath="/progression/perks">
<perk name="Reduced Crafting Time" parent="skillGeneralPerks" max_level="1" icon="meleeToolRepairT1ClawHammer"
desc_key="Reduces crafting time by 100%" title_key="Reduced Crafting Time">
<!-- Level 1: Reduces Crafting Time by 100% -->
<effect_group level="1">
<passive_effect name="CraftingTime" operation="perc_add" value="-1.0"/>
<!-- A value of -1.0 means 100% reduction in crafting time. -->
<display_text_key name="dCraftingSpeedBonus" value="100"/>
</effect_group>
</perk>
</append>
<!--
NOTE: Localization phrases are handled solely by the 'en.txt' file
in the 'Localization' folder, and are no longer appended directly in this XML.
-->
</configs>



I used Google Gemini to design a perk under the General Perks Tab. It "works", but not as intended. The perk is designed to reduce the player's crafting time. It does reduce the crafting, but you don't even need to assign a skill point to this "Reduced Crafting Time" perk, you automatically have it. does anyone know a fix? Code and screenshots below for reference.
you can see below i dont have a skill point into the new perk. I don't have any other mods. This is mod is being uploaded to a server for testing. Also, how can i change where it says "Crafting Time 0%"?
<?xml version="1.0" encoding="UTF-8"?>
<configs>
<!--
This mod adds a new perk called "Reduced Crafting Time" to the game.
This perk is designed to instantly reduce crafting time by 100% (making it instant)
at its single level.
It is now correctly placed under the "attGeneralPerks" attribute,
which corresponds to the "General Perks" tab in the game's UI,
as found in your provided progression.xml.
-->
<append xpath="/progression/perks">
<perk name="Reduced Crafting Time" parent="skillGeneralPerks" max_level="1" icon="meleeToolRepairT1ClawHammer"
desc_key="Reduces crafting time by 100%" title_key="Reduced Crafting Time">
<!-- Level 1: Reduces Crafting Time by 100% -->
<effect_group level="1">
<passive_effect name="CraftingTime" operation="perc_add" value="-1.0"/>
<!-- A value of -1.0 means 100% reduction in crafting time. -->
<display_text_key name="dCraftingSpeedBonus" value="100"/>
</effect_group>
</perk>
</append>
<!--
NOTE: Localization phrases are handled solely by the 'en.txt' file
in the 'Localization' folder, and are no longer appended directly in this XML.
-->
</configs>


