Advertisement
Guest User

SurvivalGames config file

a guest
Aug 17th, 2013
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 KB | None | 0 0
  1. ################################################
  2. # Survival Games #
  3. # #
  4. # Developed by #
  5. # Double0negative #
  6. # #
  7. # #
  8. # http://mc-sg.org #
  9. # voidmc.com #
  10. ################################################
  11.  
  12. #Do NOT touch this!
  13. config-version: 3
  14.  
  15. #Enable debug messages
  16. debug: false
  17.  
  18. #Enables the udpdate checker. This will enabled
  19. #anyone with the perm sg.system.updatenotify to
  20. #be notified when a new update is avalible
  21. check-for-updates: true
  22.  
  23. #Set how many players are needed for the game
  24. #to auto-start. Once the player limit is reached
  25. #it will wait for x amount of seconds for
  26. #additional players. Auto start vote means that
  27. #x percent of players need to vote with /sg vote
  28. #for the game to begin
  29. auto-start-players: 20
  30. auto-start-time: 20
  31. auto-start-vote: 75
  32.  
  33. #If the player queue is enabled then if a player
  34. #tries to join a game that is not joinable
  35. #(ie ingame) the player will be added to a
  36. #queue line to join the next time the game
  37. #is open
  38. enable-player-queue: true
  39.  
  40. #If set to true, commands not associated with
  41. #the Survival Games will not be allowed to be run
  42. #by players in-game.
  43. disallow-commands: true
  44. #If disallow-commands is set to true, you can use
  45. #the cmdwhitelist section below to whitelist certain
  46. #commands.
  47. cmdwhitelist:
  48. - 'kit'
  49.  
  50. #Set how long the grace period for be after the start of
  51. #the game in seconds.
  52. grace-period: 20
  53.  
  54. #Controlls if chests should be restocked on the first
  55. #night. If set to true this will also have the side
  56. #effect of setting the world time to day at the start
  57. #of the game. This is only temporary until per-arena time
  58. #has been implemented.
  59. restock-chest: true
  60.  
  61. #Here you can control block placing and breaking.
  62. block:
  63. place:
  64. whitelist:
  65. - 18
  66. - 105
  67. - 31
  68. - 37
  69. - 38
  70. - 50
  71. - 103
  72. - 43
  73. break:
  74. whitelist:
  75. - 18
  76. - 105
  77. - 31
  78. - 37
  79. - 38
  80. - 50
  81. - 103
  82. - 43
  83.  
  84.  
  85.  
  86.  
  87.  
  88. #Settings for when the game nears end. This runs
  89. #when there are only x amount of players
  90. #remaining. If place chest is enabled then
  91. #when the player limit is reached, a chest
  92. #will be placed inside the radius of every
  93. #remain player containing random items for
  94. #that player. If fire-lighting is enabled
  95. #then a lighting strike will be fired at the
  96. #location of each player every x seconds to
  97. #notify the other players of their location
  98. endgame:
  99. players: 3
  100. fire-lighting:
  101. enabled: true
  102. interval: 20
  103.  
  104.  
  105. #If enabled, after x amount of time, each player
  106. #remaing will be teleported to the center of the
  107. #arena for a death match. If they have not been
  108. #killed after killtime, the game will end.
  109. deathmatch:
  110. enabled: false
  111. time: 30
  112. killtime: 5
  113.  
  114.  
  115. #Settings for connecting to and
  116. #SQL server. These settings will
  117. #be used for the online webstats
  118. #Prefix is what all tables used for
  119. #SurvivalGames will be
  120. #prefixed with. This should stay the same
  121. #for most cases.
  122. sql:
  123. host: 'localhost'
  124. port: 3306
  125. user: 'root'
  126. pass: ''
  127. database: 'survivalgames'
  128. prefix: 'sg_'
  129.  
  130.  
  131.  
  132. ###########################################################
  133. ####################### Stats ############################
  134. ###########################################################
  135.  
  136.  
  137. #Settings for the webstats. If enabled, stats
  138. #such as k/d record, wins, win streaks, kill
  139. #streaks, etc. will be saved.
  140.  
  141.  
  142. stats:
  143. enabled: false
  144. webserver:
  145. enabled: false
  146. port: 880
  147. points:
  148. kill: 10
  149. win: 100
  150. position: 7
  151. killstreak:
  152. base: 10
  153. multiplier: 2
  154. killstreak:
  155. level1: '&e{player}&7 got a Double Kill!'
  156. level2: '&e{player}&9 got a Multi Kill!'
  157. level3: '&e{player}&5 got an Ultra Kill!'
  158. level4: '&e{player}&4 got an Unbelievable Kill!'
  159. level5: '&e{player}&a&kii&4&l Unbelievable+!&a&kii'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement