Last active
April 16, 2022 08:43
-
-
Save warengonzaga/cbc2c40b40bd0d4359053f31d808dca6 to your computer and use it in GitHub Desktop.
Minecraft Configs - FarmControl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Please visit https://github.com/froobynooby/FarmControl/wiki/Profiles for help with making profiles. | |
profiles: | |
########################################################### | |
# PROACTIVE MODE | |
########################################################### | |
# ======================================================= # | |
# nerf animal farms | |
# no more than 12 within 4 distance block | |
# ======================================================= # | |
animal-farms-nerf: | |
group: | |
types: | |
- "category:animal" | |
count: 12 | |
distance: 4 | |
actions: | |
- remove-random-movement | |
- disable-collisions | |
# ======================================================= # | |
# limit animals, fish, ambient, and tameable | |
# no more than 12 same type in same chunk | |
# ======================================================= # | |
animal-farms-limit: | |
group: | |
types: | |
- "category:animal" | |
count: 12 | |
distance: same-chunk | |
pure: true | |
actions: | |
- remove | |
# ======================================================= # | |
# limit fish, ambient, and tameable | |
# no more than 5 same type in same chunk | |
# ======================================================= # | |
other-farms-limit: | |
group: | |
types: | |
- "category:fish" | |
- "category:ambient" | |
- "category:tameable" | |
count: 5 | |
distance: same-chunk | |
pure: true | |
actions: | |
- remove | |
# ======================================================= # | |
# limit villagers | |
# no more than 10 in the same chunk | |
# ======================================================= # | |
villagers-nerf: | |
group: | |
types: | |
- "villager" | |
count: 5 | |
distance: same-chunk | |
actions: | |
- remove-random-movement | |
- disable-collisions | |
# ======================================================= # | |
# limit villagers | |
# no more than 5 in the same chunk | |
# ======================================================= # | |
villagers-limit: | |
group: | |
types: | |
- "villager" | |
count: 5 | |
distance: same-chunk | |
actions: | |
- remove | |
# ======================================================= # | |
# limit monster farms | |
# no more than 7 same type within 10 distance block | |
# ======================================================= # | |
monster-farms-limit: | |
group: | |
types: | |
- "category:monster" | |
count: 7 | |
distance: 10 | |
pure: true | |
actions: | |
- remove | |
# ======================================================= # | |
# prevent monster farms | |
# no more than 10 in the same chunk | |
# ======================================================= # | |
monster-farms-prevent: | |
group: | |
types: | |
- "category:monster" | |
count: 10 | |
distance: same-chunk | |
actions: | |
- remove | |
########################################################### | |
# REACTIVE MODE | |
########################################################### | |
# ======================================================= # | |
# freeze animals | |
# no more than 5 within 5 distance blocks | |
# ======================================================= # | |
animal-farms-freeze: | |
group: | |
types: | |
- "category:animal" | |
count: 5 | |
distance: 5 | |
actions: | |
- remove-ai | |
- disable-collisions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment