Advertisement
Guest User

Untitled

a guest
Jul 29th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1.  
  2.  
  3. 1
  4. 2
  5. 3
  6. 4
  7. 5
  8. 6
  9. 7
  10. 8
  11. 9
  12. 10
  13. 11
  14. 12
  15. 13
  16. 14
  17. 15
  18. 16
  19. 17
  20. 18
  21. 19
  22. 20
  23. 21
  24. 22
  25. 23
  26. 24
  27. 25
  28. 26
  29. 27
  30. 28
  31. 29
  32. 30
  33. 31
  34. 32
  35. 33
  36. 34
  37. 35
  38. 36
  39. 37
  40. 38
  41. 39
  42. 40
  43. 41
  44. 42
  45. 43
  46. 44
  47. 45
  48. 46
  49. 47
  50. 48
  51. 49
  52. 50
  53. 51
  54. 52
  55. 53
  56. 54
  57. 55
  58. 56
  59. 57
  60. 58
  61. 59
  62. 60
  63. 61
  64. 62
  65. 63
  66. 64
  67. 65
  68. 66
  69. 67
  70. 68
  71. 69
  72. 70
  73. 71
  74. 72
  75. 73
  76. 74
  77. 75
  78. 76
  79. 77
  80. 78
  81. 79
  82. 80
  83. 81
  84. 82
  85. 83
  86. 84
  87. 85
  88. 86
  89. 87
  90. 88
  91. # Unsafe save:
  92. # When it's true, stats will be saved when
  93. # player leaves (when MySQL is enabled), or
  94. # when server disables.
  95. # However, when false, it will save when
  96. # player finds a reward.
  97. # -----------------------------------
  98. # If hide-found-blocks is "NONE", it will
  99. # be disabled.
  100. # -----------------------------------
  101. # For custom skulls for find effect,
  102. # use the Base64 Encoding
  103. # from heads.freshcoal.com in the give command,
  104. # what usually looks like this:
  105. # eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzAxNDYxOTczNjM0NTI1MTk2ZWNjNzU3NjkzYjE3MWFkYTRlZjI0YWE5MjgzNmY0MmVhMTFiZDc5YzNhNTAyZCJ9fX0=
  106. # -----------------------------------
  107. # You can use DISABLED or NONE for some
  108. # paths to disable it.
  109. # -----------------------------------
  110.  
  111. placeholderapi: false
  112. use-mysql: false
  113. enabled: true
  114. disabled-msg: '&c&l[!]&c The block quest is currently disabled.'
  115. use-uuid: true
  116. check-full-inventory: 0
  117. full-inventory-msg: '&c&l[!]&c Your inventory is full!'
  118. mysql-host: host
  119. mysql-database: database
  120. mysql-username: username
  121. mysql-password: password
  122. mysql-unsafe-save: true
  123. no-permission: '&c&l[!]&c You do not have permission to do that.'
  124. hide-found-blocks: NONE
  125. blocks: []
  126. find-block-commands:
  127. - particle mobSpell %locX% %locY% %locZ% 0.25 0.25 0.25 1 10
  128. - tm msg %player% &b&lBLOCK FOUND!\n&7&o(( There are &f&o%blocksLeft%&7&o blocks left. ))
  129. - rawmsg %player% false &c&l[!]&c Block found! There are &4%blocksLeft%&c blocks left.
  130. all-blocks-found-commands:
  131. - tm msg %player% &a&lALL BLOCKS FOUND!\n&7&o(( You have been gifted 1x Ancient Key as a reward! ))
  132. - rawmsg %player% false &c&l[!]&c You have found the last block and have been gifted &41x Ancient Key&c as a reward.
  133. - crazycrate give v ancient 1 %player%
  134. already-found-commands:
  135. - tm msg %player% &c&lBLOCK ALREADY FOUND\n&7&o(( There are &f&o%blocksLeft%&7&o blocks left. ))
  136. - rawmsg %player% false &c&l[!]&c You have already found that block! There are &4%blocksLeft%&c blocks left.
  137. already-found-all-blocks:
  138. - tm msg %player% &c&lALL BLOCKS FOUND\n&7&o(( You have already found all blocks. ))
  139. - rawmsg %player% false &c&l[!]&c You have already found all blocks.
  140. find-effect:
  141. enabled: true
  142. invisible: true
  143. small: true
  144. custom-name: ''
  145. head: GLOWSTONE
  146. chest: NONE
  147. leg: NONE
  148. boot: NONE
  149. particle: FLAME
  150. loop: 30
  151. levitation-per-loop: 0.2
  152. yaw-rotation: 20
  153. scheduler: 2
  154. y-start: 0.25
  155. sound: ENTITY_FIREWORK_LAUNCH
  156. sound-pitch: 0
  157. disappear-commands:
  158. enabled: false
  159. commands:
  160. - say The find effect disappeared at %locX% %locY% %locZ%!
  161. particles:
  162. loop: 20
  163. enabled: false
  164. found:
  165. dx: 0.05
  166. dy: 0.05
  167. dz: 0.05
  168. speed: 0.1
  169. quantity: 20
  170. type: DISABLED
  171. notfound:
  172. dx: 0.05
  173. dy: 0.05
  174. dz: 0.05
  175. speed: 0.1
  176. quantity: 35
  177. type: FLAME
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement