Guest User

Untitled

a guest
Aug 20th, 2011
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.53 KB | None | 0 0
  1. # Welcome new and old user of ecoCreature!
  2. # ----------------------------------------
  3. # It is vital that you go through the configuration from start to end before you continue
  4. # using this plugin, to make sure that it is functioning with your server configuration.
  5. #
  6. # Remember, it is YOUR server, it is YOUR rules. You can not appease everyone.
  7. #
  8. # Now then ...
  9. #
  10. # Which economy system are you running? ecoCreature supports the following four.
  11. # iConomy, BOSEconomy, Essentials, MineConomy
  12. #
  13. # As an example, you have BOSE, you should change the CORE setting to Core: BOSEconomy
  14. #
  15. # IntegerCurrency set to true will round the reward to a whole number, no decimals.
  16. # While if it is set to false, it will give rewards with a decimal value.
  17. #
  18. # AllowCamping defaults to false, it will prevent camping around mobspawners / dungeons etc.
  19. # This setting is followed by CampRadius - what it does is that it prevents camping within the set
  20. # amount of blocks in all directions. Both can be changed to suit your needs.
  21. #
  22. # ClearCampDrops is available as an option, it will clear the creature / monster drops if set to
  23. # true, and if false, it will allow regular creature drops.
  24. #
  25. # OverrideDrops, if set to true... default drops will be overriden by the drops specified
  26. # for ecoCreature. This only applies to the player killed monsters.
  27. # If a monster dies by accident / fire / whatever it will default to the Minecraft default drops. Have
  28. # this in mind.
  29. #
  30. # FixedDrops
  31. # If you do not like your drops to be random between 0 and the amount you wanted, set FixedDrops to true
  32. # and the creature / spawner will drop the amount of items you specified.
  33. #
  34. # BowRewards
  35. # If this value is set to false, there will be no gains from killing with a bow.
  36. #
  37. # PenalizeDeath should only be set to true if you want to penalize your players for dieing while hunting.
  38. # as it will withdraw the money they hold in their hand, and not from their banks, if they have that.
  39. #
  40. # PenalizeType, this has two values: true or false.
  41. # If the type is set to false, the amount will be a flat amount, a constant value of the set amount upon death.
  42. # If the type is set to true, the amount will be used as a percentage value and drawn from the total held currency.
  43. # This is so that ecoCreature knows whether you want to punish via flatrate or percent.
  44. #
  45. # PenalizeAmount - How much money should they drop, from the amount they already have?
  46. # This depends on what you set the type to, flat or percent (false or true).
  47. # An example;
  48. # PenalizeType: true <---- we want to punish with percentage of held money
  49. # PenalizeAmount: 5 <---- draw 5% of the players held money
  50. #
  51. # AllowUnderSeaLVL - Really not that useful, should in most cases be set to true.
  52. # What does it do? If you are under the sea level when hunting, rewards are enabled. If this is set to false,
  53. # you will not get rewards for kills below sea level. This applies to everything under sea level.
  54. #
  55. # WolverineMode - When set to true, wolf owners are rewarded for kills by their wolves
  56. #
  57. # Message Options!
  58. # ----------------
  59. # Output :: Should you notify the player of rewards, penalties or no rewards? Defaults to true - to notify.
  60. # NoReward :: If set to true, it will output a message to the player, stating he got no reward, false will not
  61. # output anything to the player when they get no reward.
  62. # Spawner :: When accidently killing around the spawn, a player can be notified of a nearby dungeon.
  63. # Having this option set to false will not send them the spawn/mobspawn camping message.
  64. #
  65. # Gains!
  66. # -----
  67. # These are per group on your server, if a player is in a group called Donors in your permissions
  68. # they will gain the base amount * value specified in the amount bit for the group.
  69. # You may freely add additional groupnames and specify your own amount here.
  70. # The group names must match those within your Permissions configuration, ecoCreature compares.
  71. System:
  72. Economy:
  73. Core: 'iConomy'
  74. IntegerCurrency: false
  75. Hunting:
  76. AllowCamping: false
  77. ClearCampDrops: true
  78. OverrideDrops: true
  79. FixedDrops: false
  80. BowRewards: true
  81. PenalizeDeath: false
  82. PenalizeType: true
  83. PenalizeAmount: 3
  84. AllowUnderSeaLVL: true
  85. WolverineMode: true
  86. CampRadius: 15
  87. Messages:
  88. Output: true
  89. NoReward: false
  90. Spawner: false
  91. NoCampMessage: '[&4Warning&f] Camping Monster Spawners gives no rewards.'
  92. NoBowMessage: '[&9???&f] You can''t seem to find any rewards on this creature.'
  93. DeathPenaltyMessage: 'You wake up to find that &6<amt> &fis missing from your pockets!'
  94. Gain:
  95. Default:
  96. Amount: 1
  97. Donors:
  98. Amount: 2.5
  99.  
  100. # HOW DO I DROPS!?
  101. # - format: 'item:amount:percent'
  102. # - more drops: Seperate the items with ; add next
  103. # - format example: 'item:amount:percent;item2:amount:percent'
  104. # This means, first you input the item id, second the item max amount upon drop, and third
  105. # is the chanse it has to drop, in percent... 50 yields a fifty fifty, for instance.
  106. #
  107. # -+-+- Special note on the AMOUNT, if you set an item to drop with the value set to 10
  108. # it selects a random amount, there's no guarantee that it will be fixed to 10.
  109. # ---> This will later be optional.
  110. #
  111. # Coin_Minimum - Minium amount of coins to drop.
  112. # Coin_Maximum - The max amount of coins to drop.
  113. # !!! With a low minimum and high maximum, you will get a random amount between those values
  114. #
  115. # OH GOD, FIXED AMOUNT ... ALL THE WAY!
  116. # Sometimes, it would be great if the amount was fixed instead of everchanging, but how?
  117. # It's simple... set the MINIMUM to the same amount as MAXIMUM - and you're ready for action!
  118. #
  119. # Coin_Percent - What are the odds to receive any currency at all?
  120. #
  121. # NoReward_Message - Even if the player doesn't receive a reward, a death message can be configured.
  122. #
  123. # Reward_Message - Every creature destroyed can have its personal reward message upon death
  124. # - Acceptable codes:
  125. # - &colourcode - Check out the forum post for the colour codes!
  126. # - <crt> - Will display creature name
  127. # - <amt> - Will display the amount + currency
  128. # - <itm> - Will display the item you held in your hand at the time
  129. #
  130. # Penalty_Message - If you have a negative amount for a creature, this is the custom message
  131. # for when the player is penalized with a deduction.
  132. RewardTable:
  133. Creeper:
  134. Drops: '289:3:75'
  135. Coin_Minimum: 1.00
  136. Coin_Maximum: 10.00
  137. Coin_Percent: 75
  138. NoReward_Message: '[&9!&f] The &c<crt> &fdies from a blow with your &3<itm>'
  139. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &c<crt>'
  140. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &c<crt>'
  141.  
  142. Skeleton:
  143. Drops: '352:4:50;262:7:50'
  144. Coin_Minimum: 1.00
  145. Coin_Maximum: 10.00
  146. Coin_Percent: 35
  147. NoReward_Message: '[&9!&f] The &c<crt> &fdies from a blow with your &3<itm>'
  148. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &c<crt>'
  149. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  150.  
  151. Zombie:
  152. Drops: '288:2:75;352:4:75;345:1:5;347:1:5;302:1:10;303:1:10;304:1:10;305:1:10;87:2:5'
  153. Coin_Minimum: 1.00
  154. Coin_Maximum: 6.00
  155. Coin_Percent: 50
  156. NoReward_Message: '[&9!&f] The &c<crt> &fdies from a blow with your &3<itm>'
  157. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &c<crt>'
  158. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  159.  
  160. Spider:
  161. Drops: '287:3:80;352:8:75;30:3:40'
  162. Coin_Minimum: 1.00
  163. Coin_Maximum: 9.00
  164. Coin_Percent: 40
  165. NoReward_Message: '[&9!&f] The &c<crt> &fdies from a blow with your &3<itm>'
  166. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &c<crt>'
  167. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  168.  
  169. PigZombie:
  170. Drops: '352:4:75;320:2:50;283:1:5'
  171. Coin_Minimum: 1.00
  172. Coin_Maximum: 10.00
  173. Coin_Percent: 40
  174. NoReward_Message: '[&9!&f] The &c<crt> &fdies from a blow with your &3<itm>'
  175. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &c<crt>'
  176. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  177.  
  178. Ghast:
  179. Drops: '289:2:20;264:1:1;259:1:10;86:2:5;23:1:5'
  180. Coin_Minimum: 5.00
  181. Coin_Maximum: 25.00
  182. Coin_Percent: 40
  183. NoReward_Message: '[&9!&f] The &c<crt> &fdies from a blow with your &3<itm>'
  184. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &c<crt>'
  185. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  186.  
  187. Slime:
  188. Drops: '341:2:5'
  189. Coin_Minimum: 0.08
  190. Coin_Maximum: 13.00
  191. Coin_Percent: 65
  192. NoReward_Message: '[&9!&f] The &c<crt> &fdies from a blow with your &3<itm>'
  193. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &c<crt>'
  194. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  195.  
  196. Giant:
  197. Drops: '57:2:80;341:40:100;322:3:100;302:1:100;303:1:100;304:1:100;305:1:100'
  198. Coin_Minimum: 20.00
  199. Coin_Maximum: 80.00
  200. Coin_Percent: 100
  201. NoReward_Message: '[&9!&f] The &c<crt> &fdies from a blow with your &3<itm>'
  202. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &c<crt>'
  203. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  204.  
  205. Chicken:
  206. Drops: '288:2:100;344:1:20'
  207. Coin_Minimum: 0.00
  208. Coin_Maximum: 2.00
  209. Coin_Percent: 10
  210. NoReward_Message: '[&9!&f] The &2<crt> &fdies from a blow with your &3<itm>'
  211. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &2<crt>'
  212. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  213.  
  214. Cow:
  215. Drops: '334:4:100'
  216. Coin_Minimum: 0.00
  217. Coin_Maximum: 3.00
  218. Coin_Percent: 40
  219. NoReward_Message: '[&9!&f] The &2<crt> &fdies from a blow with your &3<itm>'
  220. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &2<crt>'
  221. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  222.  
  223. Pig:
  224. Drops: '319:3:100'
  225. Coin_Minimum: 0.00
  226. Coin_Maximum: 2.00
  227. Coin_Percent: 43
  228. NoReward_Message: '[&9!&f] The &2<crt> &fdies from a blow with your &3<itm>'
  229. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &2<crt>'
  230. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  231.  
  232. Sheep:
  233. Drops: ''
  234. Coin_Minimum: 0.00
  235. Coin_Maximum: 1.00
  236. Coin_Percent: 15
  237. NoReward_Message: '[&9!&f] The &2<crt> &fdies from a blow with your &3<itm>'
  238. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &2<crt>'
  239. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  240.  
  241. Squid:
  242. Drops: '351:2:25'
  243. Coin_Minimum: 0.04
  244. Coin_Maximum: 4.75
  245. Coin_Percent: 5
  246. NoReward_Message: '[&9!&f] The &2<crt> &fdies from a blow with your &3<itm>'
  247. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &2<crt>'
  248. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  249.  
  250. Wolf:
  251. Drops: ''
  252. Coin_Minimum: 2.00
  253. Coin_Maximum: 4.00
  254. Coin_Percent: 10
  255. NoReward_Message: '[&9!&f] The &2<crt> &fdies from a blow with your &3<itm>'
  256. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &2<crt>'
  257. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  258.  
  259. Monster:
  260. Drops: ''
  261. Coin_Minimum: 0.01
  262. Coin_Maximum: 20.00
  263. Coin_Percent: 20
  264. NoReward_Message: '[&9!&f] The &c<crt> &fdies from a blow with your &3<itm>'
  265. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &c<crt>'
  266. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  267.  
  268. Spawner:
  269. Drops: ''
  270. Coin_Minimum: 0.01
  271. Coin_Maximum: 30.00
  272. Coin_Percent: 0
  273. NoReward_Message: '[&9!&f] The &2<crt> &fexplodes from a blow with your &3<itm>'
  274. Reward_Message: '[&2:)&f] You have been awarded &6<amt> &ffor slaying a &2<crt>'
  275. Penalty_Message: '[&4:(&f] You have been penalized with a deduction of &6<amt> &ffor slaying a &2<crt>'
  276.  
  277. DidYou:
  278. Read:
  279. Understand:
  280. Configure: true
  281.  
  282. # If you have now reached this point of the ecoCreature.yml file, you may of have noticed the last entry.
  283. # Switch the Configure: false to Configure: true
  284. #
  285. # Why? It means that you have, hopefully, read, understood as well as configured the plugin to your needs.
  286. # If this value is still false when you start your server, the plugin will be disabled.
  287. #
  288. # WHY!?
  289. # Because. It simply just explains itself. Don't even think about starting an argument about it.
Advertisement
Add Comment
Please, Sign In to add comment