Advertisement
Guest User

Untitled

a guest
Jun 20th, 2017
497
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 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. Min-Players: 4
  27. Max-Players: 10
  28. Money-System: mysql
  29. Stats-System: mysql
  30. Lobby:
  31. Start-Cooldown: 30
  32. Stats-On-Game-End: true
  33. Money-On-Scoreboard: true
  34. Rewards:
  35. Kills:
  36. reward: true
  37. money-per-kill: 5
  38. Win:
  39. reward: true
  40. money-per-win: 25
  41. Participation:
  42. reward: true
  43. money-per-participation: 20
  44. Go-Back-To-Hub:
  45. Item: true
  46. Item-Type: BARRIER
  47. Item-Name: §c§lGo Back To Hub
  48. Hub-Names:
  49. - Paintlobby
  50. Kits:
  51. Shotgun:
  52. paid: true
  53. price: 3000
  54. MachineGun:
  55. paid: true
  56. price: 5000
  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: *******
  70. hostname: localhost
  71. port: '3306'
  72. database: *********
  73. username: ************
  74. Send-Players-To-Hub-On-End:
  75. enabled: true
  76. servers-name:
  77. - Paintlobby
  78. Restart:
  79. enabled: true
  80. amount-games-before-restart: 1
  81. send-to-server:
  82. enabled: true
  83. servers-name:
  84. - Paintlobby
  85. Max-Game-Time:
  86. Enabled: true
  87. Max-Time-In-Seconds: 500.0
  88. Force-Balance-On-Start: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement