Guest User

Untitled

a guest
Sep 9th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. Creating a kit:
  2.  
  3. Creating a kit may look hard, but it is not too bad if you get the hang of it. I am writing this guide to help anyone out that could find it hard at first.
  4.  
  5. I will not explain about spacing, as proper spacing is shown in the example. Refer to that for help. Also note that we are creating our first kit in this guide.
  6.  
  7. To create our first kit, you will need to add as follows:
  8.  
  9. Code:
  10. [CODE]Kits:
  11.  
  12. Kit0:
  13. To add another kit, just to this:
  14.  
  15. Code:
  16. Kits:
  17.  
  18. Kit0:
  19.  
  20.    #Stuff
  21.  
  22. Kit1:
  23.  
  24.    #More stuff[/CODE]
  25. Then, in the AmountOfItemsInKit section, you will need to put the amount of items you want in your kit, starting at 1, not 0 this time. This is so the plugin knows how many items it needs to register for the specific kit.
  26.  
  27. Now we need to create our item. Copy and paste the following from the example:
  28.  
  29. Code:
  30. [CODE]   Item0: DIAMOND_HELMET
  31.  
  32.    Amount: '1'
  33.  
  34.    AmountOfRandomLores: 4
  35.  
  36.    Displayname: '&6&lCosmic Helmet'
  37.  
  38.    Lore: '&e&oCosmic helmet!'
  39.  
  40.    EnchantmentAmount: 1
  41.  
  42.    Enchantment0: PROTECTION_ENVIRONMENTAL
  43.  
  44.    EnchantmentLevel0: 4
  45.  
  46.    Random0:
  47.  
  48.    - '&aAquatic I'
  49.  
  50.    Random1:
  51.  
  52.    - '&7Oxygenate I'
  53.  
  54.    Random2:
  55.  
  56.    - '&6Clarity I'
  57.  
  58.    - '&6Clarity II'
  59.  
  60.    - '&6Clarity III'
  61.  
  62.    Random3:
  63.  
  64.    - '&6Drunk I'
  65.  
  66.    - '&6Drunk II'
  67.  
  68.    - '&6Drunk III'
  69.  
  70.    - '&6Drunk IV'[/CODE]
  71.  
  72.  
  73. After that, all you need to do is tweak what is in there! If you want to add more items, just copy and paste the first item.
  74.  
  75. To add more random lores, just change the number on AmountOfRandomLoresand make the number your item number.
  76.  
  77. You need this section for each item you make. Then after, to add another Random Lore, just put Random<RandomNumber> and done!
  78.  
  79. Here is an example:
  80.  
  81. [CODE]Random3:
  82.  
  83. - '&6Drunk I'
  84.  
  85. - '&6Drunk II'
  86.  
  87. - '&6Drunk III'
  88.  
  89. - '&6Drunk IV'
  90.  
  91. #Adding another (Make sure you add 1 to AmountOfRandomLores.)
  92.  
  93. Random4:
  94.  
  95. - '&6Example I'
  96.  
  97. - '&6Example II'[/CODE]
  98.  
  99. When you are done your kit:
  100.  
  101. When finished, make the GUI icon for it, and click the icon on the server to try it out! Remember that private support is provided by me, so don't hesitate to contact me if you are having problems!
Add Comment
Please, Sign In to add comment