Advertisement
Guest User

Untitled

a guest
May 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.00 KB | None | 0 0
  1. # This is a template config file
  2. # define your parameter and its value like:
  3. Messages:
  4. ErrorMsg : "&c[AutoPickup] : Some error occured."
  5. InventoryFullMsg: "&aYour Inventory is FULL!"
  6. AutoSmeltToggleMsg: "&a[AutoPickup] Your auto smeling is &e%status% &anow."
  7. AutoBlockToggleMsg: "&a[AutoPickup] Your auto blocking is &e%status% &anow."
  8.  
  9. HelpMessages:
  10. banner:
  11. msg: "=== &e[&aAutoPickup Commands List (%version%)&e] &r==="
  12. help:
  13. msg: "&a/autopickup help : displays this help menu."
  14. reload:
  15. msg: "&a/autopickup reload : reloads config file."
  16. permission: "autopickup.reload"
  17. debug:
  18. msg: "&a/autopickup debug <true|false> : turn on / off the debug mode."
  19. permission: "autopickup.debug"
  20.  
  21. # if this option is true, a player must have autopickup.pickup permission node.
  22. # default is false
  23. UsePermission: false
  24.  
  25. # this is a workaround for 1.8, if you're using 1.8 or
  26. # your server suffer from minecart+hopper+ autopickup glitch, turn this to false;
  27. PickupMinecart: true
  28.  
  29. # the use of vkbackpack
  30. UseVKBackPack: false
  31.  
  32. # inventory full message related settings
  33. InvFull:
  34. UseTitle: true
  35. UseActionBar: false
  36. UseChat: false
  37. DiscardExcessBlocks: true
  38.  
  39. # only the gamemode listed below will trigger autopickup
  40. GameModes:
  41. # - ADVENTURE
  42. # - CREATIVE
  43. # - SPECTATOR
  44. - SURVIVAL
  45.  
  46. AutoSmelt: true
  47. AutoBlock: false
  48.  
  49. #
  50. # Flags to determine which type of event triggers the autopickup
  51. # default is true
  52. BlockBreak: true #mining blocks
  53. EntityDeath: false #killing mobs/players
  54. TEExplosion: true #explosion from TokenEnchant
  55. Fishing: true
  56. ItemSpawn: true # extra item spawning from other plugins such as McMMO
  57. VehicleDestroy: true
  58. ExpOrbPickup: true # picking up exp orbs
  59. MobLoot : false # apply Looting enchant for mob drops
  60.  
  61.  
  62. # adjust these event priority if those event processes from this plugin
  63. # interfere with other plugins' event processes.
  64. TEBlockExplodeEventPriority: "LOW"
  65. BlockBreakEventPriority: "HIGH"
  66. PlayerFishEventPriority: "HIGH"
  67. ItemSpawnEventPriority: "HIGH"
  68. EntityDeathEventPriority: "NORMAL"
  69.  
  70. # you can list items, which will be ignored by this plugin
  71. # for example, if you're using SilkSpawners plugin, you would want to list MOB_SPAWNER
  72. NoPickup:
  73. - MOB_SPAWNER
  74.  
  75. # if this option is true, Fortune enchant effect will be applied to the block, which was placed by players.
  76. ApplyFortuneForPlacedBlock: false
  77.  
  78. # when this option is enabled, you can expect fortune behavior like in AutoSell.
  79. CustomFortune:
  80. Enabled: true
  81. Random: false
  82. Multiplier: .075
  83. Minimum: 1
  84. Maximum: 75
  85. Modifier: 1
  86.  
  87. # if nothing is listed under this option, ALL block types will yield fortune.
  88. # if anything is listed under this option, only those listed will yield fortune.
  89. FortunedBlocks:
  90. # - DIAMOND_ORE
  91. # - IRON_ORE
  92. # - GOLD_ORE
  93. # - COAL_ORE
  94. # - EMERALD_ORE
  95. # - COBBLESTONE
  96. # - SAND
  97.  
  98. # Fortune will NOT be applied if players are in the following worlds.
  99. NoFortuneWorlds:
  100. # - Parcelas
  101.  
  102. AutoSmelting:
  103. DIAMOND_ORE: DIAMOND
  104. IRON_ORE: IRON_INGOT
  105. GOLD_ORE: GOLD_INGOT
  106. COAL_ORE: COAL
  107. EMERALD_ORE: EMERALD
  108. COBBLESTONE: STONE
  109. SAND: GLASS
  110.  
  111. AutoBlocking:
  112. CLAY_BALL:
  113. num: 4
  114. target: CLAY
  115. DIAMOND:
  116. num: 9
  117. target: DIAMOND_BLOCK
  118. GOLD_INGOT:
  119. num: 9
  120. target: GOLD_BLOCK
  121. IRON_INGOT:
  122. num: 9
  123. target: IRON_BLOCK
  124. EMERALD:
  125. num: 9
  126. target: EMERALD_BLOCK
  127. REDSTONE:
  128. num: 9
  129. target: REDSTONE_BLOCK
  130. INK_SACK:
  131. data: 4
  132. num: 9
  133. target: LAPIS_BLOCK
  134. COAL:
  135. num: 9
  136. target: COAL_BLOCK
  137. GLOWSTONE_DUST:
  138. num: 9
  139. target: GLOWSTONE
  140.  
  141. #
  142. # AutoSell plugin support
  143. AutoSell:
  144. Enabled: true
  145. DisplayMessage: false
  146. DisplayFormat:
  147. - '&8&m-----------------------------------------------------'
  148. - '&eYour AutoSell stats...'
  149. - '&bItems Sold&7: &f%items%'
  150. - '&bAmount&7: &a$&f%amount%'
  151. - '&8&m-----------------------------------------------------'
  152.  
  153. #
  154. # Sound effect
  155. Sound:
  156. ItemBreak: true
  157. OrbPickup: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement