- Fixed PaperMC hanger - added PaperMC server downloader - made it so that you set your remote path as the root of your minecraft server, and the script figures out where the files need to go - Fixed Modrinth so that it also handles server distros like how Jenkins handler does it - Added minecraft distro and version to confing.json.example, this is used right now, but i will be wrighting it into the script soon - added LINCENSE file
22 lines
784 B
JSON
22 lines
784 B
JSON
{
|
|
"global": {
|
|
"useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36",
|
|
"downloadPath": "downloads"
|
|
// Not in use but for future use
|
|
"MinecraftDistro": "Paper",
|
|
"MinecraftVersion": "latest" // Set to "latest" to always download the latest version, or specify a version like "1.20.4"
|
|
},
|
|
"urls": [
|
|
"https://github.com/McPlugin/SoCool",
|
|
],
|
|
"sftp": {
|
|
"enabled": true,
|
|
"host": "",
|
|
"port": 22,
|
|
"username": "",
|
|
"password": "", // This will be encrypted by the script and removed from the file
|
|
"remotePath": "/minecraft/", // as of 1.1.0 you need to set this as the root of your minecraft server!
|
|
"privateKeyPath": "" // Leave blank if using password
|
|
}
|
|
}
|