FFAQs

Fake Frequently Asked Questions


Q - I don't want to mess around with conditions, I just hate creepers and want them to disappear. How?
mobs:
- name: creeper
  conditions:
  - spawn: no
Q - I want to ban zombies, except when I spawn them myself. How?
mobs:
- name: zombie
  conditions:
  - spawn: yes
    world:
      reasons:
      - custom
  - spawn: no
Q - How can I spawn a mob like normal, except if it's raining?
mobs:
- name: pig
  conditions:
  - spawn: no
    world:
      raining: yes
  - spawn: yes
Q - How can I make it so that creepers only spawn in March?
mobs:
- name: creeper
  conditions:
  - spawn: yes
    real:
      months:
      - mar
  - spawn: no
Q - How can I make it so that pigs will spawn after 10 PM, but only at altitude?
mobs:
- name: pig
  conditions:
  - spawn: yes
    real:
      hours:
      - min: 22
    world:
      heights:
      - min: 100
  - spawn: no