Tonnanto / BasicQuests

A plugin for Spigot servers that implements randomly generated basic quests with rewards for players.
GNU General Public License v3.0
11 stars 4 forks source link

how to disable villagers quests #10

Closed unfairDude closed 2 years ago

Tonnanto commented 2 years ago

Go to plugins/BasicQuests/quest_generation/quest_types.yml and comment out the VILLAGER_TRADE section like so:

  - FIND_STRUCTURE:
      weight: 0.2
      value: 480.0

#  - VILLAGER_TRADE:
#      weight: 0.2
#      value: 4.0

  - GAIN_LEVEL:
      weight: 0.1
      value: 2.0

Then reload or restart the server. After that no new Villager Quests will be generated. But Villager Quests that where active at the time will still be there. You can use /skipquest /completequest or /resetquests if you want to remove existing Villager Quests.

Hope it helps :)