Advertisement
PiggiesGoSqueal

config.yml

Jan 16th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.70 KB | None | 0 0
  1. # grief prevention support, blocks releasing and capturing of any mob in claims if set to true.
  2. block-release-and-capture-on-claims: true
  3.  
  4. # defines whether the player can catch mobs in protected regions or not.
  5. can-catch-mobs-in-protected-regions: false
  6.  
  7. # defines whether the player can release mobs in protected regions or not.
  8. can-release-mobs-in-protected-regions: false
  9.  
  10. # defines wether to use the PlotSquared integration or not.
  11. can-release-and-capture-on-plots: false
  12.  
  13. # Item with this displayname would turn in a safarinet. Nice to use in Essentials-kit.
  14. pseudo-item:
  15.  enabled: false
  16.  single-use-display: "&cSingleuse"
  17.  reusable-display: "&cReusable"
  18.  
  19. # Blacklisted mob types that can't be caught
  20. blacklist:
  21. - PLAYER
  22. - ENDER_DRAGON
  23. - ENDERDRAGON
  24. - WITHER
  25. - WITHER_SKELETON
  26. - Blaze
  27. - Chicken_Jockey
  28. - Creeper
  29. - Elder_Guardian
  30. - Endermite
  31. - Evoker
  32. - Ghast
  33. - Guardian
  34. - Husk
  35. - Magma_Cube
  36. - Shulker
  37. - Silverfish
  38. - Skeleton
  39. - Skeleton_Horseman
  40. - Slime
  41. - Spider_Jockey
  42. - Cave_Spider
  43. - Spider
  44. - Iron_Golem
  45. - Illusioner
  46. - Stray
  47. - Vex
  48. - Vindicator
  49. - Witch
  50. - Wither_Skeleton
  51. - Zombie
  52. - Zombie_Villager
  53. - Mule
  54. - Donkey
  55. - Enderman
  56. - PigZombie
  57. - Zombie_Pigman
  58.  
  59. # Debug mode
  60. debug: false
  61.  
  62. # Logger that logs every capture and release event
  63. disable-logger: true
  64.  
  65. # Mobs can not be caught in this worlds
  66. disabled-worlds:
  67. - exampleworld
  68. # Blacklisted mobs by display name can not be caught (case insensitive)
  69. blacklist-by-name:
  70. - "dinnerbone"
  71.  
  72. can-catch-tamed-mobs: true
  73. disable-mythicmobs: true
  74. play_sound_on_capture: true
  75. sound_on_capture:
  76.   sound: SLIME_WALK
  77.   volume: 1.00
  78.   pitch: 1.00
  79. play_sound_on_spawn: true
  80. sound_on_spawn:
  81.   sound: SLIME_WALK
  82.   volume: 1.00
  83.   pitch: 1.00
  84.  
  85. # Activate this to only allow certain mobs for player. Example permission: safarinet.catch.pig AND safarinet.release.pig
  86. per-mob-permissions: false
  87. use-permission-for-crafting: false
  88. single-use:
  89.   display-name: "&eSafariNet (Single-Use)"
  90.   lore: "Right click on an entity%to catch it!"
  91.   recipe:
  92.     enabled: true
  93.     line1: "aaa"
  94.     line2: "aba"
  95.     line3: "aaa"
  96.     ingredients:
  97.    - "a:STRING"
  98.     - "b:ENDER_PEARL"
  99. reusable:
  100.   display-name: "&eSafariNet (Reusable)"
  101.   lore: "Right click on an entity%to catch it!"
  102.   recipe:
  103.     enabled: true
  104.     line1: "aaa"
  105.     line2: "aba"
  106.     line3: "aaa"
  107.     ingredients:
  108.    - "a:STRING"
  109.     - "b:EYE_OF_ENDER"
  110.    
  111. # ability to change lore of filled safarinet -> %s is the entity's name, the second %s custon name of the entity
  112. lore_filled_safarinet:
  113. - "&c%s"
  114. - "&a%s"
  115.  
  116. # catch chances. This sections is designed to set a certain chance, whether to success or fail on catch.
  117. # chance goes from 0.0 to 1.0
  118. # Multiple entity can be added.
  119. # remove the '#' if you want to use this section!
  120. #catch-chances:
  121. #  CREEPER:
  122. #    chance: 0.5
  123. #    remove-egg-on-fail: true
  124. #    remove-entity-on-fail: true
  125. #  SKELETON:
  126. #    chance: 0.1
  127. #    remove-egg-on-fail: true
  128. #    remove-entity-on-fail: false
  129.  
  130. # messages
  131. messages:
  132. #Configurable messages brought to you by Scorpion(scorpionvssub)
  133. #Messages now support new lines via \n
  134.   config_reloaded: "Config reloaded!"
  135.   no_perms: "&cYou don't have permission to use this!"
  136.   no_perms_cmd: "&cYou don't have permission to use this command!"
  137.   no_perms2: "&cYou don't have permission to use this here!"
  138.   cant_release: "&cYou can't release that!"
  139.   cant_catch: "&cYou can't catch that!"
  140.   safarinet_broken: "&cThis SafariNet is broken."
  141.   cant_catch_zhorse: "&cSorry, but you can't catch ZHorses!"
  142.   cant_catch_mypet: "&cSorry, but you can't catch MyPets!"
  143.   cant_catch_tamed: "&cYou can't catch tamed animals!"
  144.   catch-failed: "&cYou failed to catch {0}!"
  145.   syntax: "&cSyntax error: /safarinet give (player) (singleuse/reusable) [amount]"
  146.   invalid-eggs: '&cInvalid eggs found. Valid: (singleuse/reusable)'
  147. #{0} = amount {1} = egg type {2} = player name
  148.   egg-given: '&aGiven {0} {1} eggs to {2}'
  149.   reloaded: '&aSuccessfully reloaded the configuration file!'
  150.   no-number: '&cMust be a valid number!'
  151.   not-online: '&cThis player is not online.'
  152.   recipe-syntax: '&c/safarinet recipe (singleuse/reusable)'
  153.   egg-broken: '&cThis egg appears to be broken :('
  154.   blocked-world: '&cThis world does not allow mobs/animals to be captured.'
  155.  
  156. #This is the help file.
  157. #Its list based e.x:
  158. #Help:
  159. #- '/sn give....'
  160. #- 'To capture an egg right click a mob while holding it.'
  161. Help:
  162.  - '&a/sn reload &c- Reloads the plugin'
  163.   - '&a/sn recipe &c- Shows recipe''s for eggs(if loaded)'
  164.   - '&a/sn give (player) (egg) [amount] &c- Give a player an egg'
  165. RecipeShowcase:
  166.  - '&a==================='
  167.   - '&7Crafting pattern for %egg%'
  168.   - 'aaa'
  169.   - 'aba'
  170.   - 'aaa'
  171.   - '&a==================='
  172.   - '%items%'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement