Creating a new Arena

Hi! here you can see how to create a new Arena

Follow this little guide. Copy this file and configure your new arena.

#DO NOT CHANGE THIS 
type: DEFAULT
maxPlayers: 8
#THE WORLD NAME OF THE ARENA, IT MUST EXIST
worldName: "test_world"
#ARENA NAME USED ON EVERY PLACEHOLDER
name: "Test"
#CUSTOM MESSAGES/FORMAT AND SCOREBOARD FOR ARENAS
#YOU CAN ALSO USE PLACEHOLDERSAPI TO USE MORE PLACEHOLDER
options:
    scoreboard:
        waiting: 
            - '   '
            - '§fMap: §a{map_name}'
            - '§fPlayers: §a{current_players}/{max_players}'
            - '  '
            - '§fWaiting...'
            - ' '
            - '§eyour.server.ip'
        starting: 
            - '   '
            - '§fMap: §a{map_name}'
            - '§fPlayers: §a{current_players}/{max_players}'
            - '  '
            - '§fStarting in §a{remaning_seconds}s'
            - ' '
            - '§eyour.server.ip'
        pre_round: 
            - '    '
            - '§fRound: §b{round}'
            - '§fState: §e{round_type}'
            - '§fMap: §a{map_name}'
            - '   '
            - '§c[R] {red_team_progress} §8({red_team_points}/3)'
            - '§9[B] {blue_team_progress} §8({blue_team_points}/3)'
            - '  '
            - '§fTime Left: §a{time_left}'
            - ' '
            - '§eyour.server.ip'
        round: 
            - '     '
            - '§fRound: §b{round}'
            - '§fState: §e{round_type}'
            - '    '
            - '§c[R] {red_team_progress} §8({red_team_points}/3)'
            - '§9[B] {blue_team_progress} §8({blue_team_points}/3)'
            - '   '
            - '§cRed Players: §f{red_team_players} §7{red_team_isYou}'
            - '§9Blue Players: §f{blue_team_players} §7{blue_team_isYou}'
            - '  '
            - '§fTime Left: §a{time_left}'
            - ' '
            - '§eyour.server.ip'
        round_over: 
            - '    '
            - '§fRound: §b{round}'
            - '§fState: §e{round_type}'
            - '   '
            - '§c[R] {red_team_progress} §8({red_team_points}/3)'
            - '§9[B] {blue_team_progress} §8({blue_team_points}/3)'
            - '  '
            - '§fTime Left: §a{time_left}'
            - ' '
            - '§eyour.server.ip'
    chat: 
        join: "§7{player} §ehas joined (§b{current}§e/§b{max}§e)"
        quit: "§7{player} §eleft from the game (§b{current}§e/§b{max}§e)"
        format: "{displayPlayerName}§7: {message}"
        spectatorFormat: "{displayPlayerName}§7: {message}"
#LOCATIONS OF ARENAS
#FORMAT: X:Y:Z:YAW:PITCH
locations:
    npc:
        red: "0.5:75:46.5:0:0"
        blue: "0.5:75:-46.5:180:0"
    center:
        pos1: "1:64:1:0.0:0.0"
        pos2: "-1:64:-1:0.0:0.0"
    powerups:
        - "-14.5:73:34.5:0.0:0.0"
        - "14.5:73:34.5:0.0:0.0"
        - "21.5:69:0.5:0.0:0.0"
        - "-21.5:69:0.5:0.0:0.0"
        - "-14.5:73:-34.5:0.0:0.0"
        - "14.5:73:-34.5:0.0:0.0"
    spawns:
        waitingLobby: "0:66:0:0.0:0.0"
        teamRed: "0:76:54:0.0:0.0"
        teamBlue: "0:76:-54:0.0:0.0"
    walls:
        teamRedWall:
            pos1: "-6:75:-40:0.0:0.0"
            pos2: "6:82:-40:0.0:0.0"
        teamBlueWall:
            pos1: "-6:75:40:0.0:0.0"
            pos2: "6:82:40:0.0:0.0"

Last updated