Advertisement
Guest User

Untitled

a guest
May 9th, 2018
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.68 KB | None | 0 0
  1. # -------------------------------- #
  2. #
  3. # SKYWARS
  4. # By CookLoco
  5. # Battle with players in the sky
  6. #
  7. # -------------------------------- #
  8.  
  9.  
  10. # Check if exists a new update (RECOMMENDED YOU LEAVE TRUE)
  11. check_updates: true
  12.  
  13. # Debug mode
  14. # enable if you have some crash/error and need send me (CookLoco) the server log
  15. debug: false
  16.  
  17. # Debug database (MySQL)
  18. # enable if you have some crash/error and need send me (CookLoco) the server log
  19. debug-database: false
  20.  
  21. # Available languages:
  22. # en: English (Default)
  23. # es: Spanish
  24. # nl: Dutch
  25. locale: es
  26.  
  27. # Rows/Lines from the Kit Menu (WAITING GAME)
  28. kitmenu_rows: 6
  29.  
  30. # If is true, players with the permission (skywars.kit.KitName) can buy this kit
  31. kit_permission: true
  32.  
  33. # Maximum time for every arena/game
  34. maxtime: 1200
  35.  
  36. # Lobby coords [MultiArena/Lobby]
  37. # type /sw lobbyspawn to set the Lobby Spawn
  38. spawn: Skywars,43.5,185.0,-15.5,0,89.24558
  39.  
  40. # Lobby server list for random tp (BUNGEECORD SERVERS)
  41. lobbies_servers:
  42. - Lobby
  43.  
  44. # max slots used per generated chest (IN GAME)
  45. max_items_types_chest: 15
  46.  
  47. economy:
  48. # Economy types:
  49. # Custom: included per default in SkyWars (HIGHLY RECOMMENDED)
  50. # Vault: hook with Vault and other plugin like Essentials or iConomy
  51. # PlayerPoints: hook with PlayerPoints
  52. # Craftconomy3: hook with CraftConomy3
  53. mode: Custom
  54. # Currency set when you has been configured CraftConomy3 (Default: Dollar)
  55. craftconomy3_currency: Oro
  56.  
  57. reward:
  58. # reward that receive every survivor when a player die
  59. death: 1
  60. # reward for kill some player
  61. kill: 2
  62. # reward for winner
  63. win: 10
  64. wincmd:
  65. # Enable or disable winner commands (EXECUTED BY CONSOLE)
  66. enabled: false
  67. # Commands list (VARIABLES: %winner% , %map%)
  68. # FORMAT: 'CHANCE/CMD'
  69. # Example: 90/give %winner% minecraft:diamond_block 1
  70. # CHANCE: 0-100
  71. list:
  72. - 20/money give %winner% 20
  73. - 100/say %winner% won a game!
  74.  
  75. mode:
  76. # Plugin Modes:
  77. # BungeeMode: Only one game per server (better performance)
  78. # MultiArena: Unlimited games per server (underperforming with many games)
  79. # Lobby: Only Lobby System for Bungee Servers (before SkyWarsLobby)
  80. plugin: MultiArena
  81. # Auto Start when a game ends (BungeeMode)
  82. bungee-autostart: true
  83. # Select a random map from configured arenas
  84. bungeerandom: true
  85. # Select the same map all the time (BUNGEERANDOM MUST BE FALSE)
  86. bungeemapset: default
  87.  
  88. # BungeeMode setting for Sign System (MySQL REQUIRED)
  89. # enabled by default if the server is in BungeeMode, You will need a Lobby server
  90. # with SkyWars in Lobby mode for the Sign System (MySQL REQUIRED IN BOTH SERVERS)
  91. server:
  92. # bungee name that correspond to this server (Only for Arena server)
  93. bungeeid: SkyWars-1
  94.  
  95. data:
  96. # Types:
  97. # SQLite: Local File (Default)
  98. # MySQL: MySQL Server required
  99. type: SQLite
  100. mysql:
  101. # MySQL server address/ip
  102. server: localhost
  103. # database name
  104. db: SkyWars
  105. # MySQL User
  106. user: root
  107. # MySQL Port
  108. port: 3306
  109. # MySQL password
  110. password: password
  111. tablename:
  112. # Table name of player data
  113. data: SkyWars_Data
  114. # Table name of custom economy data
  115. economy: SkyWars_Economy
  116. # Table name of servers info
  117. servers: SkyWars_Servers
  118.  
  119. options:
  120. # enable or disable weather in arena worlds
  121. weather: false
  122. # enable or disable mobs spawn in arena worlds
  123. creaturespawn: false
  124. # save inventory when player join to the game and restored when leave
  125. saveInventory: true
  126. # force teleport to spawn when a player join
  127. forceLobbySpawn: true
  128. # sequencial spawn points in arena
  129. orderedSpawnPoints: true
  130. # disable pvp in Lobby world
  131. disablePvP-Outside-The-Arena: false
  132. # disable all damage in Lobby
  133. disableDamage-Outside-The-Arena: false
  134. # enable or disable leave message when player leave from the server
  135. leaveMessage: false
  136. # enable or disable join message when player join to the server
  137. joinMessage: false
  138. # disable leave item (bed)
  139. disableLeaveItem: false
  140. # disable separated Tab per world (RECOMMEND YOU LEAVE FALSE FOR 1.8 & 1.9 SERVERS)
  141. disablePerWorldTab: false
  142. # disable separated chat per world
  143. disablePerWorldChat: false
  144. # disable spectator mode when player die
  145. disableSpectatorMode-Death: true
  146. # true: remove all cage, false: remove cage's floor
  147. removeAllCageOnStart: false
  148.  
  149. block:
  150. commands:
  151. # Available modes:
  152. # blacklist: block all commands in the list
  153. # whitelist: only allow commands in the list
  154. mode: blacklist
  155. # Commands blocked for players in game (in arena)
  156. ingame:
  157. - help
  158. - spawn
  159. - home
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement