Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1.  
  2. # Disable left click to change spawners, spawns a mob instead. Still blocks Vanilla right click behavior.
  3. disableChangeTypeWithEgg: false
  4.  
  5. # Should instead of spawning a mob a MonsterSpawner be placed? (Uses consumeEgg value, too)
  6. spawnEggToSpawner: false
  7.  
  8. # Should the spawn algorithm be overridden? Allows spawning of non-standard entities
  9. spawnEggOverride: false
  10.  
  11. # Fallback if the creature should be spawned, if not specified for the entity
  12. spawnEggOverrideSpawnDefault: true
  13.  
  14. # Allowed set of tools which can mine a spawner. IDs are supported, too
  15. allowedTools:
  16. - WOOD_PICKAXE
  17. - WOODEN_PICKAXE
  18. - STONE_PICKAXE
  19. - IRON_PICKAXE
  20. - GOLD_PICKAXE
  21. - GOLDEN_PICKAXE
  22. - DIAMOND_PICKAXE
  23.  
  24. # Amount of spawners or eggs given to a player when the argument is omitted
  25. defaultAmountGive: 1
  26.  
  27. # Notify the player about the spawner when he clicks it in the inventory
  28. notifyOnClick: true
  29.  
  30. # Notify the player about the spawner when he holds the spawner in the hand
  31. notifyOnHold: true
  32.  
  33. # Configure displaying with BarAPI, time is in seconds
  34. barAPI:
  35. enable: false
  36. displayTime: 3
  37.  
  38. # Configure displaying with 1.9 BossBarApi, time is in seconds
  39. vanillaBossBar:
  40. enable: true
  41. displayTime: 3
  42.  
  43. # Valid colors are BLUE, GREEN, PINK, PURPLE, RED, WHITE, YELLOW
  44. color: RED
  45.  
  46. # Valid styles are SEGMENTED_10, SEGMENTED_12, SEGMENTED_20, SEGMENTED_6, SOLID
  47. style: SOLID
  48.  
  49. # Prevent that a spawner is changed via eggs in other territories
  50. factionsSupport: false
  51.  
  52. # Prevent that a spawner is changed via eggs in other kingdoms
  53. feudalSupport: false
  54.  
  55. # Puts more information out on startup
  56. verboseConfig: false
  57.  
  58. # Internal stuff, do NOT change unless advised - the plugin might break otherwise
  59. useReflection: true
  60. testMCVersion: true
  61. useMetadata: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement