23 lines
660 B
JavaScript
23 lines
660 B
JavaScript
const Server = require('../includes/class_server');
|
|
|
|
let servers = [];
|
|
servers.push(new Server({
|
|
slug: 'uniquename',
|
|
name: 'Display Name',
|
|
platformURL: "URL_for_pack",
|
|
mcVersion: '1.7.10',
|
|
iconURL: 'https://www.mypack.net/resources/mypack/icon.png',
|
|
description: "This can be a short paragraph describing the details of the modpack",
|
|
addressPrimary: 'my.server.address',
|
|
addressSecondary: 'my.server.address:25569',
|
|
queryPort: 45565,
|
|
rconAddress: '192.168.1.10',
|
|
rconPort: 35565,
|
|
rconPassword: 'YourRCONPassword',
|
|
rconTPSCommand: "forge tps",
|
|
rconOnlineCommand: "list",
|
|
active: true
|
|
}));
|
|
|
|
module.exports = servers;
|