StarFeather Posted June 20, 2025 Report Posted June 20, 2025 I've only seen mods that remove the rust creatures, but I'd like to do a playthrough with only dinosaur/reptile creature mods totally not coping with how bad ARK is lol and I'd like to get rid of all animals as well (maybe except butterflies and salmon). Is there a mod out there that removes them? Or maybe could anyone teach me how to make one, since I don't know a thing about modding or coding?
StarFeather Posted June 25, 2025 Author Report Posted June 25, 2025 (edited) I'm trying to make a mod like that myself now. I looked at how the "No monsters, really!" mod did it to remove rust monsters and applied what I saw to animals. It doesn't work though, animals keep spawning. Does anyone have any idea why? As an example, here is the code I did for raccoons. Quote [ { "op": "replace", "path": "/server/spawnconditions/worldgen/TriesPerChunk/avg", "value": 0, "file": "game:entities/land/raccoon-male.json" }, { "op": "replace", "path": "/server/spawnconditions/worldgen/groupSize/avg", "value": 0, "file": "game:entities/land/raccoon-male.json" }, { "op": "replace", "path": "/server/spawnconditions/worldgen/groupSize/var", "value": 0, "file": "game:entities/land/raccoon-male.json" }, { "op": "replace", "path": "/server/spawnconditions/runtine/chance", "value": 0, "file": "game:entities/land/raccoon-male.json" }, { "op": "replace", "path": "/server/spawnconditions/runtine/maxQuantity", "value": 0, "file": "game:entities/land/raccoon-male.json" }, { "op": "replace", "path": "/server/spawnconditions/runtine/groupSize/avg", "value": 0, "file": "game:entities/land/raccoon-male.json" }, { "op": "replace", "path": "/server/spawnconditions/runtine/companions", "value": "none", "file": "game:entities/land/raccoon-male.json" } ] Also for the last companion thing, no idea if I did that one correctly or how it works in general. Only male animals have coded spawning conditions, so I can only assume the "companions" thing applies the same parameters to the female and baby version, I'm not sure though. Any help is appreciated. Edited June 25, 2025 by StarFeather
StarFeather Posted June 26, 2025 Author Report Posted June 26, 2025 Thank you so much! You've just made my day! 1
Recommended Posts