Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
961
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.23 KB | None | 0 0
  1. #############################################
  2. # #
  3. # Minions #
  4. # Created by Jet315 #
  5. # #
  6. #############################################
  7.  
  8. #The prefix that is shown before the plugin
  9. PluginsPrefix: "&eMinions &7» "
  10.  
  11. #Just whether you want Minions to only be picked up if they are on full health
  12. OnlyAllowMinionPickupIfFullHealth: false
  13.  
  14. #The maximum allowed minion name length in characters(Can be anything really)
  15. MaxAllowedNameLength: 16
  16.  
  17. #Would NOT suggest setting this to false
  18. #Setting this to false will mean data is stored using PlayerNames rather than UUIDs
  19. #By setting to false, it is assumed your server is cracked meaning the plugin will not contact mojang's servers for skins
  20. UseUUIDs: true
  21.  
  22. #Action required to pickup a minion, possible actions:
  23. # LEFT
  24. # SHIFT AND LEFT
  25. # RIGHT
  26. # SHIFT AND RIGHT
  27. PickupMinionAction: "LEFT"
  28.  
  29.  
  30. #So if food is enabled for a minion, right-clicking a minion with food specified from this list will heal it by the set amount
  31. #Format: Material:data:amount
  32. FoodList:
  33. - BREAD:0:2 #Will heal two hearts of a minion
  34. - APPLE:0:2 #Will heal two hearts of a minion
  35. - COOKED_BEEF:0:4
  36. - COOKED_MUTTON:0:4
  37. - PORK:0:4
  38. - COOKED_CHICKEN:0:4
  39. - GOLDEN_APPLE:0:10 #Gapple - 10 hearts
  40. - GOLDEN_APPLE:1:20 #Super gapple - 20 hearts
  41.  
  42. #Any disabled worlds?
  43. #DisabledWorlds: []
  44. DisabledWorlds:
  45. - world_the_end
  46.  
  47. #Any blocks you wish the minion not to destroy?
  48. #This list may not work for custom minions (developed by other developers)
  49. DisabledBlocks:
  50. - BEDROCK
  51. - CHEST
  52. - DRAGON_EGG
  53. - MOB_SPAWNER
  54.  
  55. #Same as above, any entities you wish the minions not to kill?
  56. #Again may not work for custom made minions
  57. DisabledEntities:
  58. - ENDER_DRAGON
  59. - WITHER
  60. - GHAST
  61. - PLAYER
  62. - ARMOR_STAND
  63.  
  64. #Same as above, any materials you wish the item not to pickup
  65. DisabledItems: []
  66.  
  67. #The maxmimum distance the player can place a minions chest from the minion iteself
  68. #Set to -1 to disable (Allow minions to link to chests cross world, and whatever distance)
  69. MaximumChestDistanceFromMinion: 30
  70.  
  71. MaxMinionsAllowed:
  72. - minions.place.default:3 #Specifiy the permission : number of minions allowed. Depending on what permission the user has will depend on how many the user can place. the permission minions.admin.bypasslimit can also be used for no limit
  73. - minions.place.vip:5
  74. - minions.place.god:10
  75. #OR you can also do permissions per minion type
  76. # - minions.place.<miniontype>:amount
  77.  
  78. Minions:
  79. Miner: #identifier (To customise control panel find Miner in controlpanel.yml)
  80. Settings:
  81. TicksPerAnimation: 4 #How often do you want the animation to update in ticks (20 = 1 second)
  82. TicksPerAction: 50 #How often do you want the minion to mine the rock infront in ticks (20 = 1 second)
  83. DefaultSkin: Miner #Want to change the default skin? Check the skins.yml file (You can modify the Miner skin, or create your own one!)
  84. Health:
  85. EnableHealth: true #Health for all Minions is 20, health goes down over time & is recovered by feeding a minion. When health gets to 0 the minion will stop
  86. ActionPerHealth: 10 #The amount of actions (in this case block mines) the minion can do before dropping 1 health
  87. RightClickWithFoodToFeed: true #Whether the people can right-click the minion with food to heal it
  88. FeedWithMoney: true #Players will click a GUI option to feed with money
  89. FeedWithMoneyCost: 200 #If the above is true & the GUI has a 'feedwithmoney' option, how much should it cost them to fully feed the minion?
  90. DisplayItem: #
  91. Item: NETHER_STAR
  92. Damage: 0 #For items that require additional data, put this here
  93. Glow: true #Do you want the item to have the enchanted glow?
  94. DisplayName: "&3Miner &eMinion" #Can use %STATS% for the blocks mined, and %LEVEL% for the level of the minion
  95. Lore:
  96. - "&7Right-Click this Minion" #Can use %STATS% for the blocks mined, and %LEVEL% for the level of the minion
  97. - "&7to place it! Once placed"
  98. - "&7it will mine the block infront."
  99. - "&7Remember to feed it!" #If you don't want minions to be fed, maybe delete this :)
  100. - " "
  101. - "&eBlocks Mined: &b%STATS%"
  102. - "&eLevel: &b%LEVEL%"
  103. Slayer:
  104. Settings:
  105. TicksPerAnimation: 4
  106. TicksPerAction: 140
  107. DefaultSkin: Slayer
  108. Health:
  109. EnableHealth: true
  110. ActionPerHealth: 4
  111. RightClickWithFoodToFeed: true
  112. FeedWithMoney: true
  113. FeedWithMoneyCost: 200
  114. DisplayItem:
  115. Item: NETHER_STAR
  116. Damage: 0
  117. Glow: true
  118. DisplayName: "&cSlayer &eMinion" #Can use %STATS% for the kills the minion has done, and %LEVEL% for the level of the minion
  119. Lore:
  120. - "&7Right-Click this Minion" #Can use %STATS% for the kills the minion has done, and %LEVEL% for the level of the minion
  121. - "&7to place it! Once placed"
  122. - "&7it will kill mobs within its"
  123. - "&7range! "
  124. - "&7Remember to feed it!" #If you don't want minions to be fed, maybe delete this :)
  125. - " "
  126. - "&eMobs Killed: &b%STATS%"
  127. - "&eLevel: &b%LEVEL%"
  128. Collector:
  129. Settings:
  130. TicksPerAnimation: 4
  131. TicksPerAction: 100
  132. DefaultSkin: Collector
  133. Health:
  134. EnableHealth: true
  135. ActionPerHealth: 15
  136. RightClickWithFoodToFeed: true
  137. FeedWithMoney: true
  138. FeedWithMoneyCost: 200
  139. DisplayItem:
  140. Item: NETHER_STAR
  141. Damage: 0
  142. Glow: true
  143. DisplayName: "&eCollector Minion" #Can use %STATS% for the kills the minion has done, and %LEVEL% for the level of the minion
  144. Lore:
  145. - "&7Right-Click this Minion" #Can use %STATS% for the kills the minion has done, and %LEVEL% for the level of the minion
  146. - "&7to place it! Once placed"
  147. - "&7it will collect all items"
  148. - "&7within its range!"
  149. - "&7Remember to feed it!" #If you don't want minions to be fed, maybe delete this :)
  150. - " "
  151. - "&eItems Collected: &b%STATS%"
  152. - "&eLevel: &b%LEVEL%"
  153. Feeder:
  154. Settings:
  155. TicksPerAnimation: 4
  156. TicksPerAction: 300
  157. DefaultSkin: Feeder
  158. Health:
  159. EnableHealth: true
  160. ActionPerHealth: 15
  161. RightClickWithFoodToFeed: true
  162. FeedWithMoney: true
  163. FeedWithMoneyCost: 200
  164. DisplayItem:
  165. Item: NETHER_STAR
  166. Damage: 0
  167. Glow: true
  168. DisplayName: "&eFeeder Minion"
  169. Lore:
  170. - "&7Right-Click this Minion"
  171. - "&7to place it! Once placed"
  172. - "&7it will feed all minions"
  173. - "&7within its range!"
  174. - "&7Remember to feed it!"
  175. - " "
  176. - "&eHunger Healed: &b%STATS%"
  177. - "&eLevel: &b%LEVEL%"
  178. Lumberjack:
  179. Settings:
  180. TicksPerAnimation: 4
  181. TicksPerAction: 200
  182. DefaultSkin: Lumberjack
  183. Health:
  184. EnableHealth: true
  185. ActionPerHealth: 10
  186. RightClickWithFoodToFeed: true
  187. FeedWithMoney: true
  188. FeedWithMoneyCost: 200
  189. DisplayItem:
  190. Item: NETHER_STAR
  191. Damage: 0
  192. Glow: true
  193. DisplayName: "&eLumberjack Minion"
  194. Lore:
  195. - "&7Right-Click this Minion"
  196. - "&7to place it! Once placed"
  197. - "&7it start chopping logs & leaves"
  198. - "&7within its range!"
  199. - "&7Remember to feed it!"
  200. - " "
  201. - "&eLogs chopped: &b%STATS%"
  202. - "&eLevel: &b%LEVEL%"
  203. Farmer:
  204. Settings:
  205. TicksPerAnimation: 4
  206. TicksPerAction: 60 #one complete harvest = 1 action
  207. DefaultSkin: Farmer
  208. Health:
  209. EnableHealth: true
  210. ActionPerHealth: 15
  211. RightClickWithFoodToFeed: true
  212. FeedWithMoney: true
  213. FeedWithMoneyCost: 200
  214. DisplayItem:
  215. Item: NETHER_STAR
  216. Damage: 0
  217. Glow: true
  218. DisplayName: "&eFarmer Minion"
  219. Lore:
  220. - "&7Right-Click this Minion"
  221. - "&7to place it! Once placed"
  222. - "&7it start farming crops"
  223. - "&7within its range!"
  224. - "&7Remember to feed it!"
  225. - " "
  226. - "&eTotal Harvests: &b%STATS%"
  227. - "&eLevel: &b%LEVEL%"
  228. Fisher:
  229. Settings:
  230. TicksPerAnimation: 4
  231. TicksPerAction: 60 #one attempt to catch a fish
  232. DefaultSkin: Fisher
  233. Health:
  234. EnableHealth: true
  235. ActionPerHealth: 20
  236. RightClickWithFoodToFeed: true
  237. FeedWithMoney: true
  238. FeedWithMoneyCost: 200
  239. DisplayItem:
  240. Item: NETHER_STAR
  241. Damage: 0
  242. Glow: true
  243. DisplayName: "&eFisher Minion"
  244. Lore:
  245. - "&7Right-Click this Minion"
  246. - "&7to place it! Once placed"
  247. - "&7it will start fishing"
  248. - "&7in water pools 4 blocks"
  249. - "&7within range"
  250. - "&7Remember to feed it!"
  251. - " "
  252. - "&eTotal fish caught: &b%STATS%"
  253. - "&eLevel: &b%LEVEL%"
  254. Seller:
  255. Settings:
  256. TicksPerAnimation: 4
  257. TicksPerAction: 300 #The time it takes for the minion to sell items in the chest
  258. DefaultSkin: Seller
  259. Health:
  260. EnableHealth: true
  261. ActionPerHealth: 15
  262. RightClickWithFoodToFeed: true
  263. FeedWithMoney: true
  264. FeedWithMoneyCost: 200
  265. DisplayItem:
  266. Item: NETHER_STAR
  267. Damage: 0
  268. Glow: true
  269. DisplayName: "&eSeller Minion"
  270. Lore:
  271. - "&7Right-Click this Minion"
  272. - "&7to place it! Once placed"
  273. - "&7it will start selling"
  274. - "&7the items in its attached"
  275. - "&7chest!"
  276. - " "
  277. - "&eItems Sold: &b%STATS%"
  278. - "&eLevel: &b%LEVEL%"
  279. Spawner:
  280. Settings:
  281. TicksPerAnimation: 4
  282. TicksPerAction: 200 #The time it takes for the minion to spawn in mobs
  283. DefaultSkin: Spawner
  284. Health:
  285. EnableHealth: true
  286. ActionPerHealth: 4
  287. RightClickWithFoodToFeed: true
  288. FeedWithMoney: true
  289. FeedWithMoneyCost: 1000
  290. DisplayItem:
  291. Item: NETHER_STAR
  292. Damage: 0
  293. Glow: true
  294. DisplayName: "&eSpawner Minion"
  295. Lore:
  296. - "&7Right-Click this Minion"
  297. - "&7to place it! Once placed"
  298. - "&7it will start spawning"
  299. - "&7mobs!"
  300. - " "
  301. - "&eMobs Spawned: &b%STATS%"
  302. - "&eLevel: &b%LEVEL%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement