Advertisement
Alstro20

bountiful.cfg

Jul 17th, 2021
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. # Configuration file
  2.  
  3. board {
  4. # Whether or not the bounty board can be broken (Default: true).
  5. B:"Board Breakable?"=false
  6.  
  7. # Whether or not bounty boards will drop when broken (Default: true).
  8. B:"Board Drops on Break"=true
  9.  
  10. # Whether or not a recipe for the bounty board is created (Default: false).
  11. B:"Board Recipe Enabled?"=false
  12.  
  13. # The number of entries that a Bounty Board starts with when placed, if not using global bounties (Default: 0)
  14. I:"Bounties Created On Place"=0
  15.  
  16. # How long entries stay on the board, at max (Bounties will be removed prematurely if board hits max entries). (Default: 72000)
  17. I:"Bounty on Board Lifespan"=72000
  18.  
  19. # By default (false), all boards share a single, global inventory per dimension. If false, all boards have their own inventory.
  20. B:"Global Bounty Inventory"=true
  21.  
  22. # How many entries should be on a bounty board at a given time. (Max: 27, Default: 17)
  23. I:"Max Bounties Per Board At A Time"=5
  24.  
  25. # How often, in ticks, new bounty should show up on the bounty board. (Min: 20, Default: 2400)
  26. I:"New Bounty Frequency"=1800
  27.  
  28. # Whether or not bounty boards naturally generate in villages (Default: true).
  29. B:"Village Generation"=false
  30. }
  31.  
  32.  
  33. bounty {
  34. # A general multiplier for how long you get to complete a bounty, based on bounty worth. (Default: 28.0)
  35. D:"Bounty Expiry Time Multiplier"=28.0
  36.  
  37. # The maximum number of objectives that a bounty could ask for (Default: 2)
  38. I:"Bounty Items Max"=1
  39.  
  40. # The minimum number of objectives that a bounty could ask for (Default: 1)
  41. I:"Bounty Items Min"=1
  42.  
  43. # By default (true), the user must cash in the bounty by right clicking on the bounty board. If false, you can right click with the item in hand.
  44. B:"Cash In At Bounty Board?"=true
  45.  
  46. # A multiplier for how much longer entity (mob) bounties will give you to complete than item bounties.
  47. D:"Entity Bounty Time Multiplier"=2.0
  48.  
  49. # The minimum time, in ticks, required to complete a bounty. (Default: 6000)
  50. I:"Minimum Bounty Time"=6000
  51.  
  52. # The chance, per level, for a bounty to increase in rarity (Default: 0.27)
  53. D:"Rarity Increase Chance"=0.27
  54.  
  55. # By default (false), entries do not start counting down until the player takes them.
  56. B:"Should Bounties Count Down on Board?"=false
  57. }
  58.  
  59.  
  60. compat {
  61. # Whether or not gamestages compat is enabled.
  62. B:"GameStages Compat"=true
  63. }
  64.  
  65.  
  66. misc {
  67. # How much experience you get for completing a bounty at each rarity tier. (Default: 4 (Common), 8 (Uncommon), 12 (Rare), 20 (Epic))
  68. I:"How much experience each rarity of bounty should give you." <
  69. 4
  70. 8
  71. 12
  72. 20
  73. >
  74. }
  75.  
  76.  
  77. rarity {
  78. # A multiplier for how much a common bounty is worth. (Default: 1.0)
  79. D:"a) Common Worth Multiplier"=0.5
  80.  
  81. # A multiplier for how much an uncommon bounty is worth (Default: 1.1)
  82. D:"b) Uncommon Worth Multiplier"=1.0
  83.  
  84. # A multiplier for how much a rare bounty is worth (Default: 1.2)
  85. D:"c) Rare Worth Multiplier"=1.2
  86.  
  87. # A multiplier for how much an epic bounty is worth (Default: 1.5)
  88. D:"d) Epic Worth Multiplier"=1.5
  89. }
  90.  
  91.  
  92. rewards {
  93. # If using a currency for rewards, set this to true. By default (false), rewards will be picked at random until they match the bounty value (adjusted by rarity). If true, rewards will be greedily chosen (The most expensive coming first) until they match the bounty value. Currency rewards benefit from setting this to true because the highest possible coin values will be given first. With this turned on, reward weights are ignored.
  94. B:"Greedy Rewards?"=true
  95. }
  96.  
  97.  
  98.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement