Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. # Unsafe save:
  2. # When it's true, stats will be saved when
  3. # player leaves (when MySQL is enabled), or
  4. # when server disables.
  5. # However, when false, it will save when
  6. # player finds a reward.
  7. # -----------------------------------
  8. # If hide-found-blocks is "NONE", it will
  9. # be disabled.
  10. # -----------------------------------
  11. # For custom skulls for find effect,
  12. # use the Base64 Encoding
  13. # from heads.freshcoal.com in the give command,
  14. # what usually looks like this:
  15. # eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzAxNDYxOTczNjM0NTI1MTk2ZWNjNzU3NjkzYjE3MWFkYTRlZjI0YWE5MjgzNmY0MmVhMTFiZDc5YzNhNTAyZCJ9fX0=
  16. # -----------------------------------
  17. # You can use DISABLED or NONE for some
  18. # paths to disable it.
  19. # -----------------------------------
  20.  
  21. placeholderapi: false
  22. use-mysql: false
  23. enabled: false
  24. disabled-msg: '&cBlocks aren''t enabled yet! If you are a player, refer to a Server Administrator!'
  25.  
  26. use-uuid: true
  27. check-full-inventory: 0
  28. full-inventory-msg: '&c&lYour inventory is full!'
  29.  
  30. mysql-host: host
  31. mysql-database: database
  32. mysql-username: username
  33. mysql-password: password
  34. mysql-unsafe-save: true
  35.  
  36. no-permission: '&cYou don''t have permission for this!'
  37.  
  38. hide-found-blocks: NONE
  39. blocks: []
  40.  
  41. find-block-commands:
  42. - particle mobSpell %locX% %locY% %locZ% 0.25 0.25 0.25 1 10
  43. - rawmsg %player% true &a&lBlock&2&lQUEST
  44. - rawmsg %player% false &a
  45. - rawmsg %player% true &fYou found a block!
  46. - rawmsg %player% true &f%blocksLeft% left.
  47. - give %player% diamond 1
  48.  
  49. all-blocks-found-commands:
  50. - rawmsg %player% true &a&lBlock&2&lQUEST
  51. - rawmsg %player% false &a
  52. - rawmsg %player% true &fYou found &lALL &fblocks!
  53. - rawmsg %player% true &fNice!
  54. - give %player% diamond_block 1
  55.  
  56. already-found-commands:
  57. - rawmsg %player% true &a&lBlock&2&lQUEST
  58. - rawmsg %player% false &a
  59. - rawmsg %player% true &fYou already found this block!
  60.  
  61. already-found-all-blocks:
  62. - rawmsg %player% true &a&lBlock&2&lQUEST
  63. - rawmsg %player% false &a
  64. - rawmsg %player% true &fYou already found all blocks!
  65.  
  66. find-effect:
  67. enabled: true
  68. invisible: true
  69. small: true
  70. custom-name: ''
  71. head: PUMPKIN
  72. chest: NONE
  73. leg: NONE
  74. boot: NONE
  75. particle: FLAME
  76. loop: 30
  77. levitation-per-loop: 0.2
  78. yaw-rotation: 20
  79. scheduler: 2
  80. y-start: 0.25
  81. sound: ENTITY_FIREWORK_LAUNCH
  82. sound-pitch: 0
  83. disappear-commands:
  84. enabled: false
  85. commands:
  86. - 'say The find effect disappeared at %locX% %locY% %locZ%!'
  87.  
  88. particles:
  89. loop: 20
  90. enabled: false
  91. found:
  92. dx: 0.05
  93. dy: 0.05
  94. dz: 0.05
  95. speed: 0.1
  96. quantity: 20
  97. type: DISABLED
  98. notfound:
  99. dx: 0.05
  100. dy: 0.05
  101. dz: 0.05
  102. speed: 0.1
  103. quantity: 35
  104. type: FLAME
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement