First commit
This commit is contained in:
80
src/main/resources/config.yml
Normal file
80
src/main/resources/config.yml
Normal file
@@ -0,0 +1,80 @@
|
||||
#
|
||||
# |-----| |-----| |-----| |-----| |---\ | | |-----|
|
||||
# | | | | | | \ | | |
|
||||
# |-----| |-----| |---| |---| | | |-----| | |--|
|
||||
# | | | | | / | | | |
|
||||
# |-----| | |-----| |-----| |---/ | | |-----|
|
||||
# v1.0.0 by TDSTOS
|
||||
#
|
||||
# Organization: McScrims-Network (https://github.com/McScrims-Network/)
|
||||
# Owner: TDSTOS (https://github.com/TDSTOS)
|
||||
# Contributors: stavgun (https://github.com/stavgun)
|
||||
#
|
||||
|
||||
debug: false
|
||||
language: 'en_US'
|
||||
|
||||
restart_time: 3
|
||||
|
||||
network:
|
||||
enabled: false
|
||||
serverId: 'server-1'
|
||||
type: REDIS
|
||||
redis:
|
||||
host: 'localhost'
|
||||
port: 6379
|
||||
user: 'default'
|
||||
password: ''
|
||||
database: 0
|
||||
timeout: 5000
|
||||
poolSize: 10
|
||||
|
||||
cooldown: 30
|
||||
needed_hits: 15
|
||||
|
||||
world:
|
||||
name: 'Default'
|
||||
border:
|
||||
size: 1000.0
|
||||
warning_distance: 5.0
|
||||
damage: 5.0
|
||||
decrease: 100.0
|
||||
|
||||
game:
|
||||
name: 'SpeedHG'
|
||||
variantName: 'Solo - Single Kit'
|
||||
|
||||
minimumPlayers: 8
|
||||
|
||||
competitiveGame: false
|
||||
competitiveCommands:
|
||||
- 'server'
|
||||
- 'servers'
|
||||
- 'hub'
|
||||
- 'lobby'
|
||||
- 'l'
|
||||
|
||||
playerState:
|
||||
waiting: 'Waiting - %time%'
|
||||
preStart: 'Waiting - %time%'
|
||||
immunity: 'Playing - %time%'
|
||||
battle: 'Playing - %time%'
|
||||
feast: 'Playing - %time%'
|
||||
deathmatch: 'Playing - %time%'
|
||||
end: 'Ending - %time%'
|
||||
|
||||
recraftNerf:
|
||||
enabled: false
|
||||
maxAmount: 64
|
||||
beforeState: 'FEAST'
|
||||
|
||||
teams:
|
||||
enabled: false
|
||||
maximumPlayers: 2
|
||||
|
||||
blockedKits: []
|
||||
|
||||
blockedPerks: []
|
||||
|
||||
perks:
|
||||
maximumAmount: 2
|
||||
13
src/main/resources/database.json
Normal file
13
src/main/resources/database.json
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"connectionString": "",
|
||||
"host": "localhost",
|
||||
"port": 27017,
|
||||
"database": "minecraft",
|
||||
"username": "root",
|
||||
"password": "pass",
|
||||
"authDatabase": "admin",
|
||||
"ssl": false,
|
||||
"replicaSet": "",
|
||||
"connectionTimeout": 30,
|
||||
"poolSize": 10
|
||||
}
|
||||
23
src/main/resources/messages.yml
Normal file
23
src/main/resources/messages.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
#
|
||||
# |-----| |-----| |-----| |-----| |---\ | | |-----|
|
||||
# | | | | | | \ | | |
|
||||
# |-----| |-----| |---| |---| | | |-----| | |--|
|
||||
# | | | | | / | | | |
|
||||
# |-----| | |-----| |-----| |---/ | | |-----|
|
||||
# v1.0.0 by TDSTOS
|
||||
#
|
||||
# Organization: McScrims-Network (https://github.com/McScrims-Network/)
|
||||
# Owner: TDSTOS (https://github.com/TDSTOS)
|
||||
# Contributors: stavgun (https://github.com/stavgun)
|
||||
#
|
||||
|
||||
default:
|
||||
prefix: '<gradient:dark_green:green>McScrims</gradient> <dark_gray>┃</dark_gray><reset>'
|
||||
no_permission: '%prefix% <red>You don''t have permission to do that!</red>'
|
||||
player_not_found: '%prefix% <red>This player could not be found!</red>'
|
||||
command_cooldown: '%prefix% <red>Please wait {time} seconds before using this command again!</red>'
|
||||
|
||||
commands:
|
||||
unknown: |-
|
||||
%prefix% <red>Unknown subcommand: {unknown}</red>
|
||||
%prefix% <gray>Use /{command} for an overview.</gray>
|
||||
4
src/main/resources/plugin.yml
Normal file
4
src/main/resources/plugin.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
name: GameModes-SpeedHG
|
||||
version: '1.0.0'
|
||||
main: club.mcscrims.speedhg.SpeedHG
|
||||
api-version: '1.21'
|
||||
Reference in New Issue
Block a user