Jump to content

Edit History

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

Lucky_7s

Also working in 1.0

Need to Change the following inside the windows.xml

Change Seed Station From This
 

Quote

<!-- *** HYDROPONICE SEED STATION -->
<!-- *** TOOLS WINDOW -->
    <window name="windowTools_HSS" width="228" height="121" panel="Right" cursor_area="true" >
        <panel style="header.panel">
            <sprite style="header.icon" sprite="ui_game_symbol_cookware"/>
            <label style="header.name" text="TOOLS" text_key="XUI_windowTools_HVF" />
        </panel>

        <rect name="content" depth="0" pos="0,-46" height="75" disablefallthrough="true">

            <grid name="inventory" rows="1" cols="3" pos="3,-3" cell_width="75" cell_height="75" controller="WorkstationToolGrid" repeat_content="true" required_tools="bucketRiverWater,resourceWaterFilter,smallEngine" required_tools_only="true">
                <item_stack controller="RequiredItemStack" name="0"/>
            </grid>
        </rect>
    </window>        

    </append>


to this
 

Quote

<!-- *** HYDROPONICE SEED STATION -->
<!-- *** TOOLS WINDOW -->
    <window name="windowTools_HSS" width="228" height="121" panel="Right" cursor_area="true" >
        <panel style="header.panel">
            <sprite style="header.icon" sprite="ui_game_symbol_cookware"/>
            <label style="header.name" text="TOOLS" text_key="XUI_windowTools_HVF" />
        </panel>

        <rect name="content" depth="0" pos="0,-46" height="75" disablefallthrough="true">

            <grid name="inventory" rows="1" cols="3" pos="3,-3" cell_width="75" cell_height="75" controller="WorkstationToolGrid" repeat_content="true" required_tools="bucketRiverWater,toolDewFilter,smallEngine" required_tools_only="true">
                <item_stack controller="RequiredItemStack" name="0"/>
            </grid>
        </rect>
    </window>        

    </append>



This will fix the Water Filter from not being able to be placed inside the Seed Station

Also change items.xml

From this
 

Quote

    <append xpath="/items/item[@name='resourceWaterFilter']">
        <effect_group tiered="false">
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropAloeLeaf"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropBlueberries"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropChrysanthemumPlant"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropCoffeeBeans"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropCorn"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropCottonPlant"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropGoldenrodPlant"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropGraceCorn"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropHopsFlower"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropMushrooms"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropPotato"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropYuccaFruit"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropPumpkin"/>                                                
        </effect_group>
    </append>



To This

 

Quote

    <append xpath="/items/item[@name='toolDewFilter']">
        <effect_group tiered="false">
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropAloeLeaf"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropBlueberries"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropChrysanthemumPlant"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropCoffeeBeans"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropCorn"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropCottonPlant"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropGoldenrodPlant"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropGraceCorn"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="resourceCropHopsFlower"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropMushrooms"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropPotato"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropYuccaFruit"/>
            <passive_effect name="CraftingIngredientCount" operation="base_subtract" value="1" tags="foodCropPumpkin"/>                                                
        </effect_group>
    </append>

 

Lucky_7s

Lucky_7s

Also working in 1.0

Need to Change the following inside the windows.xml

Change Seed Station From This
 

Quote

<!-- *** HYDROPONICE SEED STATION -->
<!-- *** TOOLS WINDOW -->
    <window name="windowTools_HSS" width="228" height="121" panel="Right" cursor_area="true" >
        <panel style="header.panel">
            <sprite style="header.icon" sprite="ui_game_symbol_cookware"/>
            <label style="header.name" text="TOOLS" text_key="XUI_windowTools_HVF" />
        </panel>

        <rect name="content" depth="0" pos="0,-46" height="75" disablefallthrough="true">

            <grid name="inventory" rows="1" cols="3" pos="3,-3" cell_width="75" cell_height="75" controller="WorkstationToolGrid" repeat_content="true" required_tools="bucketRiverWater,resourceWaterFilter,smallEngine" required_tools_only="true">
                <item_stack controller="RequiredItemStack" name="0"/>
            </grid>
        </rect>
    </window>        

    </append>


to this
 

Quote

<!-- *** HYDROPONICE SEED STATION -->
<!-- *** TOOLS WINDOW -->
    <window name="windowTools_HSS" width="228" height="121" panel="Right" cursor_area="true" >
        <panel style="header.panel">
            <sprite style="header.icon" sprite="ui_game_symbol_cookware"/>
            <label style="header.name" text="TOOLS" text_key="XUI_windowTools_HVF" />
        </panel>

        <rect name="content" depth="0" pos="0,-46" height="75" disablefallthrough="true">

            <grid name="inventory" rows="1" cols="3" pos="3,-3" cell_width="75" cell_height="75" controller="WorkstationToolGrid" repeat_content="true" required_tools="bucketRiverWater,toolDewFilter,smallEngine" required_tools_only="true">
                <item_stack controller="RequiredItemStack" name="0"/>
            </grid>
        </rect>
    </window>        

    </append>



This will fix the Water Filter from not being able to be placed inside the Seed Station

×
×
  • Create New...