Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.19 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: true
  31.  
  32. # inventory full message related settings
  33. InvFull:
  34. UseTitle: true
  35. UseActionBar: true
  36. UseChat: true
  37. DiscardExcessBlocks: false
  38.  
  39. # only the gamemode listed below will trigger autopickup
  40. GameModes:
  41. # - ADVENTURE
  42. # - CREATIVE
  43. # - SPECTATOR
  44. - SURVIVAL
  45.  
  46. AutoSmelt: false
  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: true #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, you should not have to apply this if drops have already been adjust with looting.
  60.  
  61. # adjust these event priority if those event processes from this plugin
  62. # interfere with other plugins' event processes.
  63. EventPriorityMap:
  64. ItemSpawnEvent: "HIGH"
  65. PlayerFishEvent: "HIGH"
  66. VehicleDestroyEvent: "LOW"
  67. BlockBreakEvent: "NORMAL"
  68. EntityDeathEvent: "NORMAL"
  69. TEBlockExplodeEvent: "HIGH"
  70.  
  71. # AutoPickup will be quiet in the world specified in this option:
  72. NoPickupWorlds:
  73. # - pvp
  74.  
  75.  
  76. # you can list items, which will be ignored by this plugin
  77. # for example, if you're using SilkSpawners plugin, you would want to list MOB_SPAWNER
  78. NoPickup:
  79. - MOB_SPAWNER
  80.  
  81. # if this option is true, Fortune enchant effect will be applied to the block, which was placed by players.
  82. ApplyFortuneForPlacedBlock: false
  83.  
  84. # when this option is enabled, you can expect fortune behavior like in AutoSell.
  85. CustomFortune:
  86. Enabled: false
  87. Random: true
  88. Multiplier: 1.2
  89. Minimum: 1
  90. Maximum: 100
  91. Modifier: 1
  92.  
  93. # if nothing is listed under this option, ALL block types will yield fortune.
  94. # if anything is listed under this option, only those listed will yield fortune.
  95. FortunedBlocks:
  96. # - DIAMOND_ORE
  97. # - IRON_ORE
  98. # - GOLD_ORE
  99. # - COAL_ORE
  100. # - EMERALD_ORE
  101. # - COBBLESTONE
  102. # - SAND
  103.  
  104. # Fortune will NOT be applied if players are in the following worlds.
  105. NoFortuneWorlds:
  106. # - creative
  107.  
  108. AutoSmelting:
  109. DIAMOND_ORE: DIAMOND
  110. IRON_ORE: IRON_INGOT
  111. GOLD_ORE: GOLD_INGOT
  112. COAL_ORE: COAL
  113. EMERALD_ORE: EMERALD
  114. COBBLESTONE: STONE
  115. SAND: GLASS
  116.  
  117. AutoBlocking:
  118. CLAY_BALL:
  119. num: 4
  120. target: CLAY
  121. DIAMOND:
  122. num: 9
  123. target: DIAMOND_BLOCK
  124. GOLD_INGOT:
  125. num: 9
  126. target: GOLD_BLOCK
  127. IRON_INGOT:
  128. num: 9
  129. target: IRON_BLOCK
  130. EMERALD:
  131. num: 9
  132. target: EMERALD_BLOCK
  133. REDSTONE:
  134. num: 9
  135. target: REDSTONE_BLOCK
  136. INK_SACK:
  137. data: 4
  138. num: 9
  139. target: LAPIS_BLOCK
  140. COAL:
  141. num: 9
  142. target: COAL_BLOCK
  143. GLOWSTONE_DUST:
  144. num: 9
  145. target: GLOWSTONE
  146.  
  147. #
  148. # AutoSell plugin support
  149. AutoSell:
  150. Enabled: false
  151. DisplayMessage: true
  152. DisplayFormat:
  153. - '&8&m-----------------------------------------------------'
  154. - '&eYour AutoSell stats...'
  155. - '&bItems Sold&7: &f%items%'
  156. - '&bAmount&7: &a$&f%amount%'
  157. - '&8&m-----------------------------------------------------'
  158.  
  159. #
  160. # Sound effect
  161. Sound:
  162. ItemBreak: true
  163. OrbPickup: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement