Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. # Outposts update every 2 seconds
  2. #
  3. # PAPI Placeholders:
  4. # %outpost_status_outpostName%
  5. # %outpost_controlling_outpostName%
  6. # %outpost_attacking_outpostName%
  7. # %outpost_workinghours_outpostName%
  8. # %outpost_percentage_outpostName%
  9. #
  10. # Info about outpost-messages:
  11. # "broadcast" means that the message will be sent regardless of the notifications preferences
  12. # "outpost-messages" types: "message", "actionbar", "title"
  13. # "only-participants" means that only attacking/defending factions will recieve notifications
  14. #
  15. # Info about outpost-settings:
  16. # "use-particles" means that particles will be shown in the area of each Outpost
  17. # "anti-annoying" prevents players from capping outpost with nothing
  18. # "use-holograms" enables auto-generated holograms at the center of the Outpost (text configurable in lang file)
  19. #
  20. # Info about outpost-rewards:
  21. # "cumulative-rewards" means that if you put multiple outpost names in a reward section, the multiplier on
  22. # the reward is then multiplied itself by the number of controlled outposts
  23. # "outpost-shop-items" are they Material IDs of the items in ShopGUI+ that when sold will recieve bonus money
  24. #
  25. # Info about outpost-workinghours:
  26. # This module basically limits the usage of the Outpost and its rewards outside of the defined working hours
  27. # Hours can be from 00 to 23, while Minutes can be from 00 to 59
  28. # The "time-start" and "time-end" mean from hour x to hour y the Outpost is active, while outside that range it's not active.
  29. # The correct format is "HH:mm", for example "23:30" or "08:09" or "01:05" ...
  30. #
  31. # Info about enabledHooks:
  32. # Here you can disable hooks in order to prioritize one of the plugins over the others
  33. # Useful if you have multiple of those plugins in your server. One of the most common cases
  34. # is if you have Towny and Parties, but want to use Parties for outpost instead of Towns.
  35. # In order to do that just set 'Towny: false' and 'Parties: true'.
  36. # If both are 'false', the plugin will use Factions instead by default.
  37.  
  38. enableTrackX: true
  39.  
  40. enabledHooks:
  41. Towny: false
  42. Parties: false
  43.  
  44. outpost-points-per-update:
  45. capturing: 3
  46. attacking: 5
  47.  
  48. outpost-settings:
  49. anti-annoying: true
  50. use-particles: true
  51. use-holograms: true
  52. hologram-y-offset: 2.7
  53. outpost-limit: false
  54. max-outposts: 1
  55. cumulative-rewards: true
  56.  
  57. outpost-workinghours:
  58. enabled: false
  59. time-start: '12:00'
  60. time-end: '00:00'
  61.  
  62. outpost-messages:
  63. CONTROLLED:
  64. enabled: true
  65. broadcast: true
  66. type: message
  67. ATTACKING:
  68. enabled: true
  69. broadcast: true
  70. type: actionbar
  71. only-participants: true
  72. CONTROLLING:
  73. enabled: true
  74. broadcast: true
  75. type: actionbar
  76. only-participants: true
  77. NEUTRALIZED:
  78. enabled: true
  79. broadcast: true
  80. type: message
  81.  
  82. outpost-rewards:
  83. mcmmo:
  84. multiplier: 1.5
  85. outposts: [NameHere, Name2]
  86. exp:
  87. multiplier: 1.5
  88. outposts: [NameHere, Name2]
  89. damage:
  90. multiplier: 1.1
  91. outposts: [NameHere, Name2]
  92. shop-sell:
  93. multiplier: 1.2
  94. outposts: [NameHere, Name2]
  95.  
  96. outpost-shop-items:
  97. - CACTUS
  98. - SUGAR_CANE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement