Advertisement
Guest User

Untitled

a guest
Jan 13th, 2016
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. # ############################################################
  2. # # +------------------------------------------------------+ #
  3. # # | Main Config | #
  4. # # +------------------------------------------------------+ #
  5. # ############################################################
  6. # World -> the world where are everything, kits, the arena, the spec spawn, the lobby spawn etc...
  7. #
  8. # Min-Players -> Min amount of players to start the game.
  9. #
  10. # Max-Players -> Max amount of players.
  11. #
  12. # Money-System -> mysql or file or vault -> System it will use to store/add/remove money of players.
  13. #
  14. # Stats-System -> mysql or file -> System it will use to store the stats (kills, wins, etc) of players
  15. #
  16. # Start-Cooldown -> Time (in seconds) before starting the game when there are enough players.
  17. #
  18. # Stats-On-Game-End -> Set if you want that 3 seconds after the end game, stats appear in the chat to each player.
  19. #
  20. # Rewards -> Set if you want a reward for kills, wins and participation, and how much per.
  21. #
  22. # Kits -> Set if a kit to be paid, and if yes for how much.
  23. #
  24. # MySQL -> MySQL infos if you put mysql to stats or money system.
  25.  
  26. World: Paintball
  27. Min-Players: 2
  28. Max-Players: 12
  29. Money-System: vault
  30. Stats-System: file
  31. Lobby:
  32. Start-Cooldown: 20
  33. Stats-On-Game-End: true
  34. Money-On-Scoreboard: true
  35. Rewards:
  36. Kills:
  37. reward: true
  38. money-per-kill: 25
  39. Win:
  40. reward: true
  41. money-per-win: 50
  42. Participation:
  43. reward: true
  44. money-per-participation: 25
  45. Go-Back-To-Hub:
  46. Item: true
  47. Item-Type: BED
  48. Item-Name: §c§lGo Back To Hub
  49. Hub-Name: lobby
  50. Kits:
  51. Shotgun:
  52. paid: true
  53. price: 2000
  54. MachineGun:
  55. paid: true
  56. price: 4000
  57. Achievements:
  58. Paintball-Starter:
  59. Reward: 100
  60. Paintball-King:
  61. Reward: 500
  62. Paintball-Master:
  63. Reward: 1000
  64. Paintball-Serial-Killer:
  65. Reward: 500
  66. Paintball-Last-Stand:
  67. Reward: 100
  68. MySQL:
  69. password: c165ebd9a9
  70. hostname: 127.0.0.1
  71. port: '3306'
  72. database: Fe
  73. username: mcd_284
  74. Send-Players-To-Hub-On-End:
  75. enabled: false
  76. servers-name:
  77. - lobby
  78. Restart:
  79. enabled: true
  80. amount-games-before-restart: 999
  81. send-to-server:
  82. enabled: true
  83. servers-name:
  84. - lobby
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement