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

XML Remove

belfegor

Member
Next question

i want remove as an an example all flagstonebox in blocks and recipe

also flagstonePlate,flagstoneCNRFull,flagstoneCNRInside etc

i dont want all blocks individually as xml order

but in one command

So all blocks and recipes that start with a the name begins "flagstone" should be deleted

how is the xml order?

 
Next questioni want remove as an an example all flagstonebox in blocks and recipe

also flagstonePlate,flagstoneCNRFull,flagstoneCNRInside etc

i dont want all blocks individually as xml order

but in one command

So all blocks and recipes that start with a the name begins "flagstone" should be deleted

how is the xml order?
/blocks/block[contains(@name,’flagstone’)]

Or

/blocks/block[starts-with(@name,’flagstone’)]

 
Back
Top