Advertisement
Guest User

Loot Config

a guest
Jan 18th, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. #===========================================================================#
  2. # Name: Loot #
  3. # Author: Kmacho #
  4. # #
  5. # Instructions: #
  6. # Here is where you set up the different types of item lists. #
  7. # I set up an example below that you can easily modify. #
  8. # Now, onto the important stuff: #
  9. # #
  10. # ListName: #
  11. # inheritance: OtherListName #
  12. # detailed: true/false #
  13. # #
  14. # ListName - The name of this list(used in the second line of a sign) #
  15. # inheritance - Will inherit the items from the list OtherListname #
  16. # #
  17. # detailed - Set this to true if you want to specify certain properties #
  18. # of the items on that list. Know that this will make the config a #
  19. # lot longer, but will enable you to customize to your liking. #
  20. # #
  21. # Detailed format: #
  22. # items: #
  23. # ItemNameOrId: #
  24. # spawn: chance,min-max #
  25. # effects: #
  26. # - NameOfEffect,Min-Max Lvl,Chance,Splash,Extend #
  27. # #
  28. # Undetailed format: #
  29. # items: #
  30. # - ItemNameOrId,min-max,chance,randomEffect #
  31. # #
  32. # ItemNameOrId - Name or ID of the item #
  33. # effects - Effects that could be applied to the item #
  34. # min - Minimum amount to appear if it passes the chance check #
  35. # max - Maximum amount to appear if it passes the chance check #
  36. # chance - The percent chance to appear at all #
  37. # randomEffect - add a random enchantment/potion effect(defaults to true) #
  38. # splash - Makes the potion throwable(only applies to potions) #
  39. # extend - Extends the duration of the effect(only applies to potions) #
  40. # #
  41. # You can also set up per-world loot chests. When a chest is opened and #
  42. # does not have a loot sign under it, it checks if the world is on this #
  43. # list. If it is, it will choose a random list of that world and be set #
  44. # to respawn in the amout of time set on the world. #
  45. # #
  46. # worlds: #
  47. # NameOfWorld: #
  48. # time: Minutes #
  49. # lists: #
  50. # - NameOfList #
  51. #===========================================================================#
  52. settings:
  53. enable_command_permissions: true
  54. enable_list_permissions: true
  55. enable_sign_permissions: true
  56. #Putting your world on this list means that ALL chest turn into loot chests, doesnt matter if theres a sign under it or not. YOU HAVE BEEN WARNED!!!
  57. worlds:
  58. worldname:
  59. time: 10
  60. lists:
  61. - common
  62. - uncommon
  63. common:
  64. detailed: false
  65. items:
  66. - 383:96,1-2,25
  67. - 383:95,1-2,25
  68. - 383:93,1-2,25
  69. - 383:92,1-2,25
  70. - 383:90,1-2,25
  71. - 383:60,5-15,20
  72. - 383:59,1-3,10
  73. - 383:58,1-1,12
  74. - 383:57,2-6,15
  75. - 383:54,1-2,20
  76. - 383:52,1-2,15
  77. - 383:51,1-2,10
  78. - 383:50,1-2,12
  79. - 383:66,1-1,5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement