Advertisement
Guest User

Untitled

a guest
Sep 1st, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.28 KB | None | 0 0
  1. ######################################################################
  2. # BlockBall #
  3. # by Shynixn #
  4. #######################################################################
  5.  
  6. # Permission:
  7. # LEVEL DESCRIPTION PERMISSION
  8. # user Access to join a blockball game blockball.user
  9. # admin Access to the /blockball command blockball.admin
  10.  
  11. # Where is the arena configuration?
  12. # Join your server, it can be configured ingame!
  13.  
  14. # Sends anonymous stats to https://bstats.org/plugin/bukkit/BlockBall.
  15. # As this does not have an impact on your BlockBall experience at all I would like you to set it on true as knowing that my
  16. # plugin gets used by many server helps me focusing on new updates ;)
  17. metrics: true
  18.  
  19. #Engine settings
  20. # Engine v2 is still in Alpha and may be changed! I recommend to try it out and give feedback on the plugin comment section.
  21.  
  22. blockball:
  23. use-engine-v2: false
  24.  
  25. #Storage settings
  26. #Database configuration to store data of players. Arenas will get stored in yml files.
  27.  
  28. sql:
  29. enabled: false
  30. host: localhost
  31. port: 3306
  32. database: ''
  33. username: ''
  34. password: ''
  35.  
  36. #Commands settings
  37. #Choose your wanted command (dynamic command engine)
  38.  
  39. # <command> = selected command
  40. # <game> = arena alias or arena id
  41. # <team> = team name
  42.  
  43. global-join:
  44. enabled: true
  45. command: bbjoin
  46. useage: /<command> <game> <team>
  47. description: Alatura-te unui meci de fotbal!
  48. permission: blockball.user
  49. permission-message: Nu ai permisiunea.
  50. global-leave:
  51. enabled: true
  52. command: bbleave
  53. useage: /<command>
  54. description: Parasesti meciul curent!
  55. permission: blockball.user
  56. permission-message: Nu ai permisiunea.
  57. navigate-chatmenu:
  58. enabled: false
  59. command: bbc
  60. useage: /<command>
  61. description: Ajuta navigarea prin meniul chat.
  62. permission: blockball.admin
  63. permission-message: Nu ai permisiunea.
  64. forcefield-join:
  65. enabled: false
  66. command: bb
  67. useage: /<command> <team>
  68. description: Te alaturi meciului curent.
  69. permission: blockball.user
  70. permission-message: Nu ai permisiunea.
  71. referee-game:
  72. enabled: false
  73. command: bbreferee
  74. useage: /<command>
  75. description: Deschide configuratia jocului.
  76. permission: blockball.admin
  77. permission-message: Nu ai permisiunea.
  78. #Sign settings
  79.  
  80. # <game> = arena alias or arena id
  81. # <team> = team name
  82. # <state> = status of the arena
  83. # <players> = amount of players on the team or in the arena
  84. # <maxplayers> = max amount of players on the team or in the arena
  85.  
  86. #Warning! One line has to be '<game>' in order to make the sign working!
  87.  
  88. minigame-sign:
  89. line-1: '&l[Play]'
  90. line-2: '<game>'
  91. line-3: '<state>'
  92. line-4: '<players>/<maxplayers>'
  93. leave-sign:
  94. line-1: '&l[Play]'
  95. line-2: 'Paraseste jocul'
  96. line-3: ''
  97. line-4: ''
  98. lobbygame-sign:
  99. line-1: '&l[Play]'
  100. line-2: '<game>'
  101. line-3: '<team>'
  102. line-4: '<players>/<maxplayers>'
  103. #Chat settings
  104. #Enable this to handle chat messages asynchronously
  105. async-chat: true
  106. highest-priority: true
  107.  
  108. #Spawnpoint settings
  109. #Set this to add a spawnpoint for players who try to respawn in an blockball field
  110. join-spawnpoint:
  111. enabled: false
  112. world: 'world'
  113. coordinates:
  114. x: 0.0
  115. y: 0.0
  116. z: 0.0
  117. yaw: 0.0
  118. pitch: 0.0
  119. #Particles settings
  120. particles:
  121. visible-for-all: true
  122. visible-permission: ''
  123.  
  124. #Knockback settings
  125. entity-velocity-protection:
  126. x: 5.0
  127. y: 2.0
  128. z: 5.0
  129. player-launch-up-protection:
  130. x: 0.0
  131. y: 2.0
  132. z: 0.0
  133.  
  134. #Delays the start of the plugin
  135. plugin-start-delay:
  136. enabled: false
  137. time-seconds: 20
  138.  
  139. #Stats settings
  140. #Enable this to show a scoreboard of the player stats on your server. You can add as many lines the scoreboard can use.
  141. # <player> - Name of the player
  142. # <winrate> - Winrate of the player
  143. # <playedgames> - Amount of played games
  144. # <goalspergame> - Amount of goals per game
  145. stats-scoreboard:
  146. enabled: false
  147. title: '&f&lStatistici'
  148. lines: #All lines have to be different otherwise it won't be shown (Simply add a invisible &r)
  149. - '&r'
  150. - '&e<player>'
  151. - '&r&m '
  152. - '&bProcentajul victoriilor:'
  153. - '&f&l<winrate> '
  154. - '&r&r'
  155. - '&6Goluri pe joc:'
  156. - '&f&l<goalspergame>'
  157. - '&r&r&r'
  158. - '&aMeciuri disputate:'
  159. - '&f&l<playedgames>'
  160. - '&m '
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement