Guest User

Untitled

a guest
Sep 28th, 2018
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.87 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: false
  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.  
  11.  
  12. # Item with this displayname would turn in a safarinet. Nice to use in Essentials-kit.
  13. pseudo-item:
  14.  enabled: false
  15.  single-use-display: "&cSingleuse"
  16.  reusable-display: "&cReusable"
  17.  
  18. # Blacklisted mob types that can't be caught
  19. blacklist:
  20. - PLAYER
  21. - ENDERDRAGON
  22.  
  23. # Debug mode
  24.  
  25. debug: false
  26.  
  27. # Mobs can not be caught in this worlds
  28. disabled-worlds:
  29. - exampleworld
  30. # Blacklisted mobs by display name can not be caught (case insensitive)
  31. blacklist-by-name:
  32. - "dinnerbone"
  33.  
  34. can-catch-tamed-mobs: true
  35. disable-mythicmobs: true
  36. play_sound_on_capture: true
  37. sound_on_capture:
  38.   sound: SLIME_WALK
  39.   volume: 1.00
  40.   pitch: 1.00
  41. play_sound_on_spawn: true
  42. sound_on_spawn:
  43.   sound: SLIME_WALK
  44.   volume: 1.00
  45.   pitch: 1.00
  46.  
  47. # Activate this to only allow certain mobs for player. Example permission: safarinet.catch.pig AND safarinet.release.pig
  48. per-mob-permissions: false
  49. use-permission-for-crafting: false
  50. single-use:
  51.   display-name: "&eSafariNet (Single-Use)"
  52.   lore: "Right click on an entity%to catch it!"
  53.   recipe:
  54.     enabled: true
  55.     line1: "aaa"
  56.     line2: "aba"
  57.     line3: "aaa"
  58.     ingredients:
  59.    - "a:STRING"
  60.     - "b:ENDER_PEARL"
  61. reusable:
  62.   display-name: "&eSafariNet (Reusable)"
  63.   lore: "Right click on an entity%to catch it!"
  64.   recipe:
  65.     enabled: true
  66.     line1: "aaa"
  67.     line2: "aba"
  68.     line3: "aaa"
  69.     ingredients:
  70.    - "a:STRING"
  71.     - "b:EYE_OF_ENDER"
  72.    
  73. # ability to change lore of filled safarinet -> %s is the entity's name, the second %s custon name of the entity
  74. lore_filled_safarinet:
  75. - "&c%s"
  76. - "&a%s"
  77.  
  78. # catch chances. This sections is designed to set a certain chance, whether to success or fail on catch.
  79. # chance goes from 0.0 to 1.0
  80. # Multiple entity can be added.
  81. # remove the '#' if you want to use this section!
  82. #catch-chances:
  83. #  CREEPER:
  84. #    chance: 0.5
  85. #    remove-egg-on-fail: true
  86. #    remove-entity-on-fail: true
  87. #  SKELETON:
  88. #    chance: 0.1
  89. #    remove-egg-on-fail: true
  90. #    remove-entity-on-fail: false
  91.  
  92. # messages
  93. messages:
  94. #Configurable messages brought to you by Scorpion(scorpionvssub)
  95. #Messages now support new lines via \n
  96.   config_reloaded: "Config reloaded!"
  97.   no_perms: "&cYou don't have permission to use this!"
  98.   no_perms_cmd: "&cYou don't have permission to use this command!"
  99.   no_perms2: "&cYou don't have permission to use this here!"
  100.   cant_release: "&cYou can't release that!"
  101.   cant_catch: "&cYou can't catch that!"
  102.   safarinet_broken: "&cThis SafariNet is broken."
  103.   cant_catch_zhorse: "&cSorry, but you can't catch ZHorses!"
  104.   cant_catch_mypet: "&cSorry, but you can't catch MyPets!"
  105.   cant_catch_tamed: "&cYou can't catch tamed animals!"
  106.   catch-failed: "&cYou failed to catch {0}!"
  107.   syntax: "&cSyntax error: /safarinet give (player) (singleuse/reusable) [amount]"
  108.   invalid-eggs: '&cInvalid eggs found. Valid: (singleuse/reusable)'
  109. #{0} = amount {1} = egg type {2} = player name
  110.   egg-given: '&aGiven {0} {1} eggs to {2}'
  111.   reloaded: '&aSuccessfully reloaded the configuration file!'
  112.   no-number: '&cMust be a valid number!'
  113.   not-online: '&cThis player is not online.'
  114.   recipe-syntax: '&c/safarinet recipe (singleuse/reusable)'
  115.   egg-broken: '&cThis egg appears to be broken :('
  116.  
  117. #This is the help file.
  118. #Its list based e.x:
  119. #Help:
  120. #- '/sn give....'
  121. #- 'To capture an egg right click a mob while holding it.'
  122. Help:
  123.  - '&a/sn reload &c- Reloads the plugin'
  124.   - '&a/sn recipe &c- Shows recipe''s for eggs(if loaded)'
  125.   - '&a/sn give (player) (egg) [amount] &c- Give a player an egg'
Add Comment
Please, Sign In to add comment