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

Adding custom search tags to recepies

dutchplayers

New member
Hi everyone,

I was wondering if it is possible to add custom search tags to recepies/blocks.

What i tried: modTag="mytag" and tags="mytag", but this seems not to work for any search entry.

Any posibility?

 
How about:

<property name="Tags" value="mytag"/>

The issue with what you are showing that you had tried is that properties have to be defined using system expressions, like 'name' and 'value'. since neither modTag nor tags are system expressions, the system is either going to skip over them, or crash on runtime.

Do let me know if that helps :)

 
How about:
<property name="Tags" value="mytag"/>

The issue with what you are showing that you had tried is that properties have to be defined using system expressions, like 'name' and 'value'. since neither modTag nor tags are system expressions, the system is either going to skip over them, or crash on runtime.

Do let me know if that helps :)
I have tried it this way:

1; <recipe name="solarCell" count="1" value="taggoeshere?" craft_area="workbench" tags="learnable" craft_exp_gain="600">

2; <recipe name="solarCell" count="1" modTag="taggoeshere?" craft_area="workbench" tags="learnable" craft_exp_gain="600">

3; <recipe name="solarCell" count="1" craft_area="workbench" tags="taggoeshere?" craft_exp_gain="600">

None of them will show up on craftinglist on the tag i gave them. They are showing up on default name.

i simply name all Items i add in vanilla+ with a + as first letter
I think that i will do this for custom blocks i made, pretty clear, but for custom recepies for blocks/items from CM will this be a harder thing. Than i have to edit all default blocknames.

 
i simply name all Items i add in vanilla+ with a + as first letter
BB22B907657E5A18D3987A0E00E9ECB793E3A6A4


The original items/Blocks i wold not touch, well maybe as modlet, but this would be a nightmare to xpath

 
Back
Top