Jump to content

Recommended Posts

Posted

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?

Posted (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 by StarFeather
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.