> For the complete documentation index, see [llms.txt](https://docs.mantic.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mantic.dev/manticswords/config-files/mobslaying-event.yml.md).

# mobslaying-event.yml

```yml
# Messages for this can be found in messages.yml

enabled: true

# Whether or not the event should run automatically every x amount of time
auto-start: true
# The delay in seconds from the server starting to when the event should start (if autoStart is enabled)
auto-start-delay: 300
# The frequency in seconds that the event should run (if autoStart is enabled)
auto-start-frequency: 3600

# The interval in seconds that the active message should be sent to players. (min 10 seconds)
active-message-interval: 60

# The duration in seconds that the event should run for.
duration: 900

# The amount of places to reward (1st, 2nd, 3rd, 4th, 5th etc).
places: 5

# The amount of mobs that must be killed to be eligible for a reward.
required-fish-caught: 1

# Whether or not the event should be scheduled to run at a specific time during the day.
enable-schedule: false
# Use https://docs.oracle.com/middleware/12211/wcs/tag-ref/MISC/TimeZones.html for timezones
time-zone: America/New_York
schedules:
- hour: 8
  minute: 0
  minimum-players: 10
- hour: 16
  minute: 30
  minimum-players: 10

# Rewards for the event. The number of rewards must match the number of places (above).
rewards:
  '1':
    commands:
    - eco give {player} 1000000
    - crystals give {player} 100000
    messages:
    - '&a&lYou have won the Fishing Event!'
    - '&a&lYou have been given &e&l$1,000,000 &a&land &e&l100,000 &a&lCrystals!'
  '2':
    commands:
    - eco give {player} 500000
    - crystals give {player} 50000
    messages:
    - '&a&lYou have won the Fishing Event!'
    - '&a&lYou have been given &e&l$500,000 &a&land &e&l50,000 &a&lCrystals!'
  '3':
    commands:
    - eco give {player} 250000
    - crystals give {player} 25000
    messages:
    - '&a&lYou have won the Fishing Event!'
    - '&a&lYou have been given &e&l$250,000 &a&land &e&l25,000 &a&lCrystals!'
  '4':
    commands:
    - eco give {player} 100000
    - crystals give {player} 10000
    messages:
    - '&a&lYou have won the Fishing Event!'
    - '&a&lYou have been given &e&l$100,000 &a&land &e&l10,000 &a&lCrystals!'
  '5':
    commands:
    - eco give {player} 50000
    - crystals give {player} 5000
    messages:
    - '&a&lYou have won the Fishing Event!'
    - '&a&lYou have been given &e&l$50,000 &a&land &e&l5,000 &a&lCrystals!'

```
