Advertisement
mpolder

AdvancedArrowTrails Files

Jul 19th, 2015
510
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. This plugin uses 3 different files to store data about the plugin and to add some extra options for the user to change, here i will explain what the files are for and how you can edit these files how you want.
  2.  
  3. Any of these files can be found in this location.
  4. <Server folder>/plugins/AdvancedArrowTrails
  5.  
  6.  
  7. Config.yml
  8. This file adds some extra options for the user of the plugin, currently there is only one option which is to disable trails and remove them from the menu.
  9.  
  10. Default Config.yml:
  11. Version: 2.8.3
  12. ArrowTrails:
  13. Blacklist:
  14. - Name1
  15. - Name2
  16. DisablePermissions: false
  17. HideNonPermittedTrails: false
  18. ForcePermissions: false
  19. OnGroundEmit: false
  20. ParticleAmount: 1
  21. ParticleAmountOnHit: 30
  22.  
  23. Blacklist: By changing Name1 and Name2 you can disable trails, the name of the trail can be found by typing "/atrail ids" ingame.
  24. DisablePermissions: Set to true if you want to disable per-trail-permissions.
  25. HideNonPermittedTrails: Hide trails that the player has no permission for from the GUI.
  26. ForcePermissions: Set to true to force permissions when firing a bound bow or trail.
  27. OnGroundEmit: Set to true if you want arrows in the ground to keep emitting particles.
  28. ParticleAmount: The amount of particles that you want to have emitted behind arrows.
  29. ParticleAmountOnHit: Amount of particles to display when an arrow hits a block (0 to disable).
  30.  
  31. The example below will disable 3 trails in total: the water trail, the lava trail (DRIP_LAVA is the lore of the lava trail item) and the angry villager trail. You can add as many lines for disabled trails as you want.
  32.  
  33. Version: 2.8.3
  34. ArrowTrails:
  35. Blacklist:
  36. - Water Trail
  37. - DRIP_LAVA
  38. - ANGRY_VILLAGER
  39. DisablePermissions: false
  40. HideNonPermittedTrails: false
  41. ForcePermissions: false
  42. OnGroundEmit: false
  43. ParticleAmount: 1
  44. ParticleAmountOnHit: 30
  45.  
  46.  
  47. Lang.yml
  48.  
  49. Default lang.yml
  50. MenuName: '&c&lTrail Menu'
  51. Messages:
  52. prefix: '[AdvancedArrowTrails]'
  53. changeTrail: Trail changed to [trail]
  54. disableTrail: Trail Disabled
  55. noPermission: You do not have the permissions to use [trail]
  56. blockedItem: Sorry but that item is not allowed!
  57. playerNotFound: Player [target] not found
  58. wrongTrail: 'Possible trails: [trails]'
  59. changeOther: Trail changed to [trail] for [target]
  60. findOther: Player [target] has [trail] selected
  61. holdBow: Please hold a bow in your hand while using this command
  62. setLore: Lore set to [lore]
  63. clearLore: Lore cleared
  64. reloadConfig: Config Reloaded
  65. ArrowTrails:
  66. Names:
  67. - '&3&lWater Trail'
  68. - '&3&lLava Trail'
  69. - '&3&lHeart Trail'
  70. - '&3&lWitch Spell Trail'
  71. - '&3&lSpell Trail'
  72. - '&3&lBarrier Trail'
  73. - '&3&lEnchanting Trail'
  74. - '&3&lFlame Trail'
  75. - '&3&lLava Trail'
  76. - '&3&lNote Trail'
  77. - '&3&lRainbow Dust Trail'
  78. - '&3&lSlime Trail'
  79. - '&3&lSnowball Trail'
  80. - '&3&lInstant Spell Trail'
  81. - '&3&lMob Spell Trail'
  82. - '&3&lAngry Trail'
  83. - '&3&lHappy Trail'
  84. - '&3&lWater Splash Trail'
  85. - '&3&lEnd Rod'
  86. - '&3&lDamage Indicator'
  87. - '&3&lDragons Breath'
  88. Name:
  89. Disable: '&3&lDisable Trail'
  90. Random: '&3&lRandom Trail'
  91.  
  92. Message codes:
  93. Any of these messages change when used
  94. [trail] - Selected trail
  95. [target] - Target of a command
  96. [trails] - List of all trail IDs
  97. [lore] - new lore
  98.  
  99. By editing the Names section you can edit the names of the trails to any name you like, do NOT remove any of the lines! This will cause errors!
  100.  
  101. Trails.yml
  102. This file by default is empty and contains no data. When a player chooses a trail it will log the chosen trail in the file and store it for future use. The chosen trails are stored in this fashion:
  103.  
  104. <UUID of the player>:
  105. trail: <ID of the trail>
  106. The ID of the trail can be found by using the command "/atrail ids".
  107.  
  108. Good luck playing with these settings and I hope you enjoy the plugin :D
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement