55 lines
2.5 KiB
Plaintext
55 lines
2.5 KiB
Plaintext
{
|
|
// When enabled, uses the overworldBorderCoords to set the border.
|
|
"enableCustomOverworldBorder": true,
|
|
// When enabled, uses the netherBorderCoords to set the border.
|
|
"enableCustomNetherBorder": false,
|
|
// When enabled, uses the endBorderCoords to set the border.
|
|
"enableCustomEndBorder": false,
|
|
// When enabled, instead of teleporting the player inside near where they were, teleports them from the positive to the negative x/z coord and vice versa.
|
|
"shouldLoopToOppositeBorder": true,
|
|
// The amount of blocks the player is teleported inside after hitting the border.
|
|
// min: 0, max: 1000
|
|
"distanceTeleportedBack": 10,
|
|
// The message which will be sent to the player when they are within 'distanceTeleportedBack' to the world border.
|
|
"nearBorderMessage": "You're getting close to the world border!",
|
|
// The message which will be sent to the player when they hit the world border.
|
|
"hitBorderMessage": "You've hit the world border, and were teleported inside!",
|
|
// The message sent to the player when they hit the border and 'shouldLoopToOppositeBorder' is enabled.
|
|
"loopBorderMessage": "You've hit the world border, and have looped around the world!",
|
|
// The overworld border located at the positive x coordinate.
|
|
// min: 0, max: 100000
|
|
"overworldBorderPositiveX": 50000,
|
|
// The overworld border located at the negative x coordinate.
|
|
// min: -100000, max: 0
|
|
"overworldBorderNegativeX": -50000,
|
|
// The overworld border located at the positive z coordinate.
|
|
// min: 0, max: 100000
|
|
"overworldBorderPositiveZ": 50000,
|
|
// The overworld border located at the negative z coordinate.
|
|
// min: -100000, max: 0
|
|
"overworldBorderNegativeZ": -50000,
|
|
// The nether border located at the positive x coordinate.
|
|
// min: 0, max: 100000
|
|
"netherBorderPositiveX": 625,
|
|
// The nether border located at the negative x coordinate.
|
|
// min: -100000, max: 0
|
|
"netherBorderNegativeX": -625,
|
|
// The nether border located at the positive z coordinate.
|
|
// min: 0, max: 100000
|
|
"netherBorderPositiveZ": 625,
|
|
// The nether border located at the negative z coordinate.
|
|
// min: -100000, max: 0
|
|
"netherBorderNegativeZ": -625,
|
|
// The end border located at the positive x coordinate.
|
|
// min: 0, max: 100000
|
|
"endBorderPositiveX": 5000,
|
|
// The end border located at the negative x coordinate.
|
|
// min: -100000, max: 0
|
|
"endBorderNegativeX": -5000,
|
|
// The end border located at the positive z coordinate.
|
|
// min: 0, max: 100000
|
|
"endBorderPositiveZ": 5000,
|
|
// The end border located at the negative z coordinate.
|
|
// min: -100000, max: 0
|
|
"endBorderNegativeZ": -5000
|
|
} |