UbberN00ber
Refugee
im looking for a way to remove the zombieSteveCrawler and zombieSteveCrawlerFeral from server... they are causing issues
Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.
The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.
<NoCrawlers>
<!--
Groups: (these are just 'contain' parameters for entity groups, for target paths)
Zombie (only uppercase, general groups including;night,Biomes)
Horde (all hordes)
Group (groups biome specific + zombie with lower case that uppercase misses)
Animal (biomes mostly)
Wolf (stand alone)
Spider -->
<set xpath="/entitygroups/entitygroup[contains(@name, 'Zombie')]/entity[contains(@name, 'zombieSteveCrawler')]/@name">zombieStripper</set>
<set xpath="/entitygroups/entitygroup[contains(@name, 'Horde')]/entity[contains(@name, 'zombieSteveCrawler')]/@name">zombieStripper</set>
<set xpath="/entitygroups/entitygroup[contains(@name, 'Group')]/entity[contains(@name, 'zombieSteveCrawler')]/@name">zombieStripper</set>
<set xpath="/entitygroups/entitygroup[contains(@name, 'Zombie')]/entity[contains(@name, 'zombieSteveCrawlerFeral')]/@name">zombieStripper</set>
<set xpath="/entitygroups/entitygroup[contains(@name, 'Horde')]/entity[contains(@name, 'zombieSteveCrawlerFeral')]/@name">zombieStripper</set>
<set xpath="/entitygroups/entitygroup[contains(@name, 'Group')]/entity[contains(@name, 'zombieSteveCrawlerFeral')]/@name">zombieStripper</set>
</NoCrawlers>
Those set xpath nodes need to be nested in a configs node. Replace NoCrawler with configsok i tired this and got error is this correct?
That is not necessary, the main node for the mod can be anything as long as it does not start with numbers. Perhaps the user has not set up the mod folder correctly ie: setting up ModInfo.xml etc.Those set xpath nodes need to be nested in a configs node. Replace NoCrawler with configs