16 lines
855 B
JavaScript
16 lines
855 B
JavaScript
const servers = [
|
|
{
|
|
slug: 'myserverslug', // Doesn't have to be an actual Technic Platform slug
|
|
name: 'MyServer', // The "display name" for the pack
|
|
platformURL: "https://www.mypack.net/mypack/", // The URL for the site or page detailing the pack
|
|
mcVersion: '1.7.10', // The MC version the pack is built on
|
|
iconURL: 'https://www.mypack.net/resources/mypack/icon.png', // The URL to the icon for the pack
|
|
description: "This can be a short paragraph describing the details of the modpack",
|
|
addressPrimary: 'mypack.servers.info', // The primary address to use for the server
|
|
addressSecondary: 'servers.info:25565', // The secondary address. Some clients have trouble with SRV records
|
|
active: true // Is the server "active". Inactive servers are not listed by default
|
|
}
|
|
]
|
|
|
|
module.exports = servers;
|