├── .checkserver
├── .gitignore
├── BedrockInstallScripts
├── GoMintInstall
├── NukkitInstall
├── PocketmineInstall
└── VanillaInstall
├── JavaInstallScripts
├── BungeecordInstall
├── FabricInstall
├── ForgeInstall
├── PaperInstall
├── SpigotInstall
├── SpongeInstall
└── VanillaInstall
├── LICENSE
├── README.md
├── install
├── installBedrock
├── installJava
├── startAfk
├── startBedrockServer
├── startJavaServer
├── startPlayIt
├── startserver
├── stopserver
├── uninstall
└── update
/.checkserver:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | sleep 10
3 | server=$(screen -ls | grep server)
4 | if [ -z "$server" ]; then
5 | echo -e '\nWhoops looks like your minecraft server crashed. \nPlease check crash.log file for crash info and send them to the mods in our discord for further help.'
6 | ./startJavaServer
7 | ./startBedrockServer
8 | killall screen
9 | else
10 | echo -e '\nyou are fine\n'
11 | fi
12 | exit
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | eula.txt
2 | playit
3 | ngrok
4 | bin/
5 | bin/java.tar.xz
6 | server/
7 |
--------------------------------------------------------------------------------
/BedrockInstallScripts/GoMintInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | sudo apt update -qq
4 | sudo apt install -y -qq zip unzip wget curl
5 |
6 | cd ..
7 | mkdir -p server
8 | cd server
9 |
10 | if [ -z "${GITHUB_USER}" ] && [ -z "${GITHUB_OAUTH_TOKEN}" ] ; then
11 | echo -e "using anon api call"
12 | else
13 | echo -e "user and oauth token set"
14 | alias curl='curl -u ${GITHUB_USER}:${GITHUB_OAUTH_TOKEN} '
15 | fi
16 |
17 | # retrieve latest tag to be used as version match, because gomint doesn't use normal releases
18 | LATEST_VERSION=$(curl -sL https://api.github.com/repos/gomint/gomint/tags | jq -r '.[-1].name')
19 |
20 | DOWNLOAD_URL=https://github.com/gomint/gomint/releases/download/${LATEST_VERSION}/${LATEST_VERSION}.zip
21 |
22 | if [ ! -z "${DOWNLOAD_URL}" ]; then
23 | if curl --output /dev/null --silent --head --fail ${DOWNLOAD_URL}; then
24 | echo -e "download link is valid. setting download link to ${DOWNLOAD_URL}"
25 | VALIDATED_URL=${DOWNLOAD_URL}
26 | else
27 | echo -e "download link is invalid, something went wrong. Closing out"
28 | exit 2
29 | fi
30 | fi
31 |
32 | curl -sSL -o ${VALIDATED_URL##*/} ${VALIDATED_URL}
33 |
34 | FILETYPE=$(file -F ',' ${VALIDATED_URL##*/} | cut -d',' -f2 | cut -d' ' -f2)
35 | if [ "$FILETYPE" == "gzip" ]; then
36 | tar xzvf ${VALIDATED_URL##*/}
37 | elif [ "$FILETYPE" == "Zip" ]; then
38 | unzip ${VALIDATED_URL##*/} -d modules/
39 | elif [ "$FILETYPE" == "XZ" ]; then
40 | tar xvf ${VALIDATED_URL##*/}
41 | else
42 | echo -e "unknown filetype. Exiting"
43 | # exit 2
44 | fi
45 |
46 | # Move files into correct folders and remove unnecessary stuff
47 | rm ${VALIDATED_URL##*/}
48 | mv modules/modules/* modules
49 | rm -rf modules/modules
50 | rm modules/start.*
51 |
52 | # Fetch server config
53 | if [ ! -f server.yml ]; then
54 | curl -sSL -o server.yml https://raw.githubusercontent.com/parkervcp/eggs/master/minecraft/bedrock/gomint/server.yml
55 | fi
56 |
--------------------------------------------------------------------------------
/BedrockInstallScripts/NukkitInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | sudo apt update -qq
4 | sudo apt install -y -qq zip unzip wget curl
5 |
6 | cd ..
7 | mkdir -p server
8 | cd server
9 |
10 |
11 |
12 |
13 | # -- EDIT HERE | DO NOT EDIT ABOVE -- #
14 | SERVER_JARFILE=server.jar # LEAVE THIS PART ALONE
15 | NUKKIT_VERSION=latest
16 | DL_PATH=
17 | # -- EDIT HERE | DO NOT EDIT BELOW -- #
18 |
19 |
20 |
21 |
22 | ## Only download if a path is provided, otherwise continue.
23 | if [ ! -z "${DL_PATH}" ]; then
24 | MODIFIED_DOWNLOAD=`eval echo $(echo ${DL_PATH} | sed -e 's/{{/${/g' -e 's/}}/}/g')`
25 | wget ${MODIFIED_DOWNLOAD} -O ${SERVER_JARFILE}
26 | elif [ -z "${NUKKIT_VERSION}" ] || [ "${NUKKIT_VERSION}" == "latest" ]; then
27 | wget https://ci.opencollab.dev/job/NukkitX/job/Nukkit/job/master/lastSuccessfulBuild/artifact/target/nukkit-1.0-SNAPSHOT.jar -O ${SERVER_JARFILE}
28 | else
29 | wget https://ci.opencollab.dev/job/NukkitX/job/Nukkit/job/master/${NUKKIT_VERSION}/artifact/target/nukkit-1.0-SNAPSHOT.jar -O ${SERVER_JARFILE}
30 | fi
31 |
32 | if [ ! -f nukkit.yml ]; then
33 | wget https://raw.githubusercontent.com/parkervcp/eggs/master/minecraft/bedrock/nukkit/nukkit.yml
34 | fi
35 |
36 | if [ ! -f server.properties ]; then
37 | wget https://raw.githubusercontent.com/parkervcp/eggs/master/minecraft/bedrock/nukkit/server.properties
38 | fi
39 |
--------------------------------------------------------------------------------
/BedrockInstallScripts/PocketmineInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | sudo apt update -qq
4 | sudo apt install -y -qq zip unzip wget curl
5 |
6 | cd ..
7 | mkdir -p server
8 | cd server
9 |
10 |
11 |
12 |
13 | # -- EDIT HERE | DO NOT EDIT ABOVE -- #
14 | VERSION=latest # VERSION: https://api.github.com/repos/pmmp/PocketMine-MP/releases/latest
15 | GITHUB_PACKAGE=pmmp/PocketMine-MP # LEAVE THIS PART ALONE
16 | MATCH=PocketMine-MP.phar # LEAVE THIS PART ALONE
17 | # -- EDIT HERE | DO NOT EDIT BELOW -- #
18 |
19 |
20 |
21 |
22 | ## get release info and download links
23 | LATEST_JSON=$(curl --silent "https://api.github.com/repos/${GITHUB_PACKAGE}/releases/latest")
24 | RELEASES=$(curl --silent "https://api.github.com/repos/${GITHUB_PACKAGE}/releases")
25 |
26 | if [ -z "${VERSION}" ] || [ "${VERSION}" == "latest" ]; then
27 | DOWNLOAD_LINK=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url | grep -i ${MATCH})
28 | else
29 | VERSION_CHECK=$(echo ${RELEASES} | jq -r --arg VERSION "${VERSION}" '.[] | select(.tag_name==$VERSION) | .tag_name')
30 | if [ "${VERSION}" == "${VERSION_CHECK}" ]; then
31 | DOWNLOAD_LINK=$(echo ${RELEASES} | jq -r --arg VERSION "${VERSION}" '.[] | select(.tag_name==$VERSION) | .assets[].browser_download_url' | grep -i ${MATCH})
32 | else
33 | echo -e "defaulting to latest release"
34 | DOWNLOAD_LINK=$(echo ${LATEST_JSON} | jq .assets | jq -r .[].browser_download_url)
35 | fi
36 | fi
37 |
38 | ## this is a simple script to validate a download url actaully exists
39 |
40 | if [ ! -z "${DOWNLOAD_URL}"]; then
41 | if curl --output /dev/null --silent --head --fail ${DOWNLOAD_URL}; then
42 | echo -e "link is valid. setting download link to ${DOWNLOAD_URL}"
43 | DOWNLOAD_LINK=${DOWNLOAD_URL}
44 | else
45 | echo -e "link is invalid closing out"
46 | exit 2
47 | fi
48 | fi
49 |
50 | curl -sSL ${DOWNLOAD_LINK} > PocketMine-MP.phar
51 |
52 | echo -e "\n downloading latest php7.4 build from pocketmine"
53 | curl -sSL -o php.binary.tar.gz https://jenkins.pmmp.io/job/PHP-7.4-Linux-x86_64/lastSuccessfulBuild/artifact/PHP_Linux-x86_64.tar.gz
54 |
55 | echo -e "\n getting default server.properties"
56 | curl -sSL https://raw.githubusercontent.com/parkervcp/eggs/master/minecraft/bedrock/pocketmine_mp/server.properties > server.properties
57 |
58 | echo -e "\n unpacking php7 binaries"
59 | tar -xzvf php.binary.tar.gz
60 |
61 | echo -e "\n removing php7 packages"
62 | rm -rf /mnt/server/php.binary.tar.gz
63 |
64 | echo -e "\n creating files and folders"
65 | touch banned-ips.txt banned-players.txt ops.txt white-list.txt server.log
66 | mkdir -p players worlds plugins resource_packs
67 |
--------------------------------------------------------------------------------
/BedrockInstallScripts/VanillaInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | sudo apt update -qq
4 | sudo apt install -y -qq zip unzip wget curl
5 |
6 | cd ..
7 | mkdir -p server
8 | cd server
9 |
10 | # -- EDIT HERE | DO NOT EDIT ABOVE -- #
11 | BEDROCK_VERSION=latest # LEAVE THIS PART ALONE (If you want to play on a different version, it's based on Minecraft Version)
12 | LD_LIBRARY_PATH=. # LEAVE THIS PART ALONE
13 | SERVERNAME=Bedrock Dedicated Server # ANYTHING YOU LIKE TO NAME
14 | GAMEMODE=survival # GAMEMODE: survival,creative,adventure
15 | DIFFICULTY=easy # DIFFICULTY: peaceful,easy,normal,hard
16 | CHEATS=false # CHEATS: true,false
17 | # -- EDIT HERE | DO NOT EDIT BELOW -- #
18 |
19 | RANDVERSION=$(echo $((1 + $RANDOM % 4000)))
20 |
21 | if [ -z "${BEDROCK_VERSION}" ] || [ "${BEDROCK_VERSION}" == "latest" ]; then
22 | echo -e "\n Downloading latest Bedrock server"
23 | curl -L -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.$RANDVERSION.212 Safari/537.36" -H "Accept-Language: en" -H "Accept-Encoding: gzip, deflate" -o versions.html.gz https://www.minecraft.net/en-us/download/server/bedrock
24 | DOWNLOAD_URL=$(zgrep -o 'https://minecraft.azureedge.net/bin-linux/[^"]*' versions.html.gz)
25 | else
26 | echo -e "\n Downloading ${BEDROCK_VERSION} Bedrock server"
27 | DOWNLOAD_URL=https://minecraft.azureedge.net/bin-linux/bedrock-server-$BEDROCK_VERSION.zip
28 | fi
29 |
30 | DOWNLOAD_FILE=$(echo ${DOWNLOAD_URL} | cut -d"/" -f5) # Retrieve archive name
31 |
32 | echo -e "backing up config files"
33 | rm *.bak versions.html.gz
34 | cp server.properties server.properties.bak
35 | cp permissions.json permissions.json.bak
36 | cp whitelist.json whitelist.json.bak
37 |
38 | echo -e "Downloading files from: $DOWNLOAD_URL"
39 |
40 | curl -L -A "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.$RANDVERSION.212 Safari/537.36" -H "Accept-Language: en" -o $DOWNLOAD_FILE $DOWNLOAD_URL
41 |
42 | echo -e "Unpacking server files"
43 | unzip -o $DOWNLOAD_FILE
44 |
45 | echo -e "Cleaning up after installing"
46 | rm $DOWNLOAD_FILE
47 |
48 | echo -e "restoring backup config files - on first install there will be file not found errors which you can ignore."
49 | cp -rf server.properties.bak server.properties
50 | cp -rf permissions.json.bak permissions.json
51 | cp -rf whitelist.json.bak whitelist.json
52 |
53 | chmod +x bedrock_server
54 |
55 | echo -e "Install Completed"
56 |
--------------------------------------------------------------------------------
/JavaInstallScripts/BungeecordInstall:
--------------------------------------------------------------------------------
1 |
2 |
3 | #!/bin/bash
4 |
5 | # @Author LordOfWizard
6 |
7 | MAIN_DIR=$PWD
8 | echo "This will install the latest bungeecord version.. if you want custom version change the BUILD_URL in JavaInstallScript/BungeecordInstall file"
9 | BUILD_URL=https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar
10 |
11 | #checking the directories thingy
12 | cd ..
13 | mkdir -p server
14 | cd server/
15 |
16 | # downloading the damn BuildTools.jar
17 | wget -q $BUILD_URL
18 | echo -e "
19 | _________ _________ _______ _________ _ _
20 | \__ __/|\ /|\__ __/( ____ \ |\ /|\__ __/( \ ( \
21 | ) ( | ) ( | ) ( | ( \/ | ) ( | ) ( | ( | (
22 | | | | (___) | | | | (_____ | | _ | | | | | | | |
23 | | | | ___ | | | (_____ ) | |( )| | | | | | | |
24 | | | | ( ) | | | ) | | || || | | | | | | |
25 | | | | ) ( |___) (___/\____) | | () () |___) (___| (____/\| (____/\
26 | )_( |/ \|\_______/\_______) (_______)\_______/(_______/(_______/
27 |
28 | _________ _______ _ _______ __________________ _______ _______
29 | \__ __/( ___ )| \ /\( ____ \ \__ __/\__ __/( )( ____ \
30 | ) ( | ( ) || \ / /| ( \/ ) ( ) ( | () () || ( \/
31 | | | | (___) || (_/ / | (__ | | | | | || || || (__
32 | | | | ___ || _ ( | __) | | | | | |(_)| || __)
33 | | | | ( ) || ( \ \ | ( | | | | | | | || (
34 | | | | ) ( || / \ \| (____/\ | | ___) (___| ) ( || (____/\
35 | )_( |/ \||_/ \/(_______/ )_( \_______/|/ \|(_______/
36 | "
37 | sleep 7
38 | clear
39 | sleep 1
40 | ../bin/java_bins/bin/java -jar BuildTools.jar
41 |
42 | # removing the BuildTools jar and log
43 | rm BuildTools*
44 | # changing the name of the file to appropriate name...
45 | JAR=$(ls *.jar)
46 | mv $JAR server.jar
47 |
48 |
--------------------------------------------------------------------------------
/JavaInstallScripts/FabricInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | sudo apt update -qq
3 | sudo apt install -y -qq curl jq unzip dos2unix wget
4 |
5 | cd ..
6 | mkdir -p server
7 | cd server
8 |
9 | echo -e 'Please check if your mc version is available: https://meta.fabricmc.net/v2/versions/game'
10 | echo -e '\n> Enter Minecraft version: '
11 | read MC_VERSION
12 |
13 | if [ -z "$MC_VERSION" ]; then
14 | $MC_VERSION=latest
15 | echo -e 'continuing with the latest version'
16 | fi
17 |
18 | # -- EDIT HERE | DO NOT EDIT ABOVE -- #
19 | SERVER_JARFILE=server.jar # LEAVE THIS PART ALONE
20 | FABRIC_VERSION=latest # FABRIC_VERSION: https://meta.fabricmc.net/v2/versions/installer
21 | # -- EDIT HERE | DO NOT EDIT BELOW -- #
22 |
23 |
24 | # Enable snapshots
25 | if [ -z "$MC_VERSION" ] || [ "$MC_VERSION" == "latest" ]; then
26 | MC_VERSION=$(curl -sSL https://meta.fabricmc.net/v2/versions/game | jq -r '.[] | select(.stable== true )|.version' | head -n1)
27 | elif [ "$MC_VERSION" == "snapshot" ]; then
28 | MC_VERSION=$(curl -sSL https://meta.fabricmc.net/v2/versions/game | jq -r '.[] | select(.stable== false )|.version' | head -n1)
29 | fi
30 |
31 | if [ -z "$FABRIC_VERSION" ] || [ "$FABRIC_VERSION" == "latest" ]; then
32 | FABRIC_VERSION=$(curl -sSL https://meta.fabricmc.net/v2/versions/installer | jq -r '.[0].version')
33 | fi
34 | wget -O fabric-installer.jar https://maven.fabricmc.net/net/fabricmc/fabric-installer/$FABRIC_VERSION/fabric-installer-$FABRIC_VERSION.jar
35 | java -jar fabric-installer.jar server -mcversion $MC_VERSION -downloadMinecraft
36 | echo -e "Install Complete"
37 |
--------------------------------------------------------------------------------
/JavaInstallScripts/ForgeInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | sudo apt update -qq
4 | sudo apt install -y -qq jq curl
5 |
6 | export MAIN_DIR=$(pwd)
7 | echo -e 'fetching forge versions data...'
8 | JSON_DATA=`curl -sSL https://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json`
9 | FILE_SITE=https://maven.minecraftforge.net/net/minecraftforge/forge/
10 | echo $MAIN_DIR
11 |
12 | cd ..
13 | rm ./startJavaServer
14 | wget https://raw.githubusercontent.com/lordofwizard/mcserver/main/startJavaServer
15 | chmod +x ./startJavaServer
16 | mkdir -p server
17 | cd server
18 |
19 | echo -e '\nPlease visit https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json to check for available versions and choose accordingly'
20 | # MC_VERSION : BUILD_TYPE: https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json
21 | echo -e "\n> Enter Forge build type(default 1):"
22 | echo -e "Type [1] recommended"
23 | echo -e "Type [2] latest"
24 | read BUILD_TYPE
25 |
26 | # if no build type, use recommended
27 | [[ -z $BUILD_TYPE ]] && BUILD_TYPE=1
28 |
29 | if [[ $BUILD_TYPE -eq 1 ]]; then
30 | BUILD_TYPE=recommended
31 |
32 | elif [[ $BUILD_TYPE -eq 2 ]]; then
33 | BUILD_TYPE=latest
34 |
35 | else
36 | echo -e "Please enter the appropriate number"
37 | cd "$MAIN_DIR"
38 | ./ForgeInstall
39 | exit
40 | fi
41 |
42 | echo -e "you chose $BUILD_TYPE"
43 |
44 | echo -e "\n> Enter minecraft version: "
45 | read MC_VERSION
46 |
47 | if [ -z $MC_VERSION ] || [ "$MC_VERSION" == "latest" ]; then
48 | MC_VERSION=`echo -e ${JSON_DATA} | jq -r '.promos | to_entries[] | .key | select(contains("latest")) | split("-")[0]' | sort -t. -k2,2n -k3,3n -k4,4n | tail -1`
49 | fi
50 |
51 | if [ ! -z $FORGE_VERSION ]; then
52 | DOWNLOAD_LINK=https://maven.minecraftforge.net/net/minecraftforge/forge/${FORGE_VERSION}-${BUILD_TYPE}/forge-${FORGE_VERSION}
53 | FORGE_JAR=forge-${FORGE_VERSION}*.jar
54 |
55 | else
56 |
57 | echo -e "\nMinecraft version: ${MC_VERSION}"
58 | echo -e "Build Type: ${BUILD_TYPE}\n"
59 |
60 | ## some variables for getting versions and things
61 | VERSION_KEY=`echo -e ${JSON_DATA} | jq -r --arg MC_VERSION "${MC_VERSION}" --arg BUILD_TYPE "${BUILD_TYPE}" '.promos | to_entries[] | .key | select(contains($BUILD_TYPE)) | select(contains($MC_VERSION))' | head -1`
62 | echo $VERSION_KEY
63 |
64 | ## locating the forge version
65 | if [ "${VERSION_KEY}" == "" ] && [ "${BUILD_TYPE}" == "latest" ]; then
66 | echo -e "dropping back to latest from recommended due to there not being a recommended version of forge for the mc version requested."
67 | VERSION_KEY=`echo -e ${JSON_DATA} | jq -r --arg MC_VERSION "${MC_VERSION}" '.promos | to_entries[] | .key | select(contains($MC_VERSION)) | select(contains("latest"))' | head -1`
68 | fi
69 |
70 | ## Error if the mc version set wasn't valid.
71 | if [ "${VERSION_KEY}" == "" ] || [ "${VERSION_KEY}" == "null" ]; then
72 | echo -e "The install failed because there is no valid version of forge for the version on minecraft selected."
73 | exit 1
74 | fi
75 |
76 | FORGE_VERSION=`echo -e ${JSON_DATA} | jq -r --arg VERSION_KEY "$VERSION_KEY" '.promos | .[$VERSION_KEY]'`
77 |
78 | if [ "${MC_VERSION}" == "1.7.10" ] || [ "${MC_VERSION}" == "1.8.9" ]; then
79 | DOWNLOAD_LINK=${FILE_SITE}${MC_VERSION}-${FORGE_VERSION}-${MC_VERSION}/forge-${MC_VERSION}-${FORGE_VERSION}-${MC_VERSION}
80 |
81 | else
82 | DOWNLOAD_LINK=${FILE_SITE}${MC_VERSION}-${FORGE_VERSION}/forge-${MC_VERSION}-${FORGE_VERSION}
83 |
84 | fi
85 | fi
86 |
87 | echo -e "Downloading forge version ${FORGE_VERSION}"
88 | echo -e "Download link is ${DOWNLOAD_LINK}"
89 | if [ ! -z "${DOWNLOAD_LINK}" ]; then
90 | if curl --output /dev/null --silent --head --fail ${DOWNLOAD_LINK}-installer.jar; then
91 | echo -e "installer jar download link is valid."
92 | else
93 | echo -e "link is invalid closing out"
94 | exit 2
95 | fi
96 | else
97 | echo -e "no download link closing out"
98 | exit 3
99 | fi
100 |
101 | curl -s -o installer.jar -sS ${DOWNLOAD_LINK}-installer.jar
102 |
103 | #Checking if downloaded jars exist
104 | if [ ! -f ./installer.jar ]; then
105 | echo "!!! Error by downloading forge version ${FORGE_VERSION} !!!"
106 | exit
107 | fi
108 |
109 | #Installing server
110 | echo -e "Installing forge server.\n"
111 | java -jar installer.jar --installServer || { echo -e "install failed"; exit 4; }
112 |
113 | #Deleting installer.jar
114 | echo -e "Deleting installer.jar file.\n"
115 | rm -rf installer.jar
116 |
117 | # creating launch file
118 | cd $MAIN_DIR/../server
119 | echo "eula=true" > eula.txt # accepted the eula
120 | FORGE_RUN_FILE=./run.sh
121 | if [ -f "$FORGE_RUN_FILE" ]; then
122 | echo "#!/bin/bash
123 | export JAVA=../bin/java_bins/bin/java
124 |
125 | \$JAVA @user_jvm_args.txt @libraries/net/minecraftforge/forge/${MC_VERSION}-${FORGE_VERSION}/unix_args.txt \"\$@\"" > run.sh
126 | chmod +x ./run.sh
127 |
128 | echo '#!/bin/bash
129 | cd server
130 | ./run.sh -nogui' > ../startJavaServer
131 | chmod +x ../startJavaServer
132 |
133 | else
134 | # 1.7.10 thanks to Optifinel3ss#9059
135 | if [ "$MC_VERSION" == "1.8.9" ] || [ "$MC_VERSION" == "1.7.10" ]; then
136 | FORGE_JAR=forge-${MC_VERSION}-${FORGE_VERSION}-${MC_VERSION}-universal.jar
137 | else
138 | FORGE_JAR=forge-${MC_VERSION}-${FORGE_VERSION}.jar
139 | fi
140 | SERVER_JARFILE=server.jar
141 | mv $FORGE_JAR $SERVER_JARFILE
142 |
143 | fi
144 |
--------------------------------------------------------------------------------
/JavaInstallScripts/PaperInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | #!/bin/bash
3 | # Paper Installation Script
4 | #
5 | # Server Files: /mnt/server
6 | sudo apt update -qq
7 | sudo apt install -y -qq curl jq > /dev/null
8 |
9 | cd ..
10 | mkdir -p server
11 | cd server
12 |
13 |
14 | echo -e "\n> Enter minecraft version for server: "
15 | MINECRAFT_VERSION=latest
16 | read MINECRAFT_VERSION
17 |
18 |
19 | # -- EDIT HERE | DO NOT EDIT ABOVE -- #
20 | BUILD_NUMBER=latest # https://papermc.io/downloads
21 | PROJECT=paper # PROJECT: https://papermc.io/api/v2/projects/
22 | SERVER_JARFILE=server.jar # LEAVE THIS PART ALONE
23 | # -- EDIT HERE | DO NOT EDIT BELOW -- #
24 |
25 |
26 |
27 |
28 | if [ -n "${DL_PATH}" ]; then
29 | echo -e "Using supplied download url: ${DL_PATH}"
30 | DOWNLOAD_URL=`eval echo $(echo ${DL_PATH} | sed -e 's/{{/${/g' -e 's/}}/}/g')`
31 | else
32 | VER_EXISTS=`curl -s https://papermc.io/api/v2/projects/${PROJECT} | jq -r --arg VERSION $MINECRAFT_VERSION '.versions[] | contains($VERSION)' | grep true`
33 | LATEST_VERSION=`curl -s https://papermc.io/api/v2/projects/${PROJECT} | jq -r '.versions' | jq -r '.[-1]'`
34 |
35 | if [ "${VER_EXISTS}" == "true" ]; then
36 | echo -e "Version is valid. Using version ${MINECRAFT_VERSION}"
37 | else
38 | echo -e "Using the latest ${PROJECT} version"
39 | MINECRAFT_VERSION=${LATEST_VERSION}
40 | fi
41 |
42 | BUILD_EXISTS=`curl -s https://papermc.io/api/v2/projects/${PROJECT}/versions/${MINECRAFT_VERSION} | jq -r --arg BUILD ${BUILD_NUMBER} '.builds[] | tostring | contains($BUILD)' | grep true`
43 | LATEST_BUILD=`curl -s https://papermc.io/api/v2/projects/${PROJECT}/versions/${MINECRAFT_VERSION} | jq -r '.builds' | jq -r '.[-1]'`
44 |
45 | if [ "${BUILD_EXISTS}" == "true" ]; then
46 | echo -e "Build is valid for version ${MINECRAFT_VERSION}. Using build ${BUILD_NUMBER}"
47 | else
48 | echo -e "Using the latest ${PROJECT} build for version ${MINECRAFT_VERSION}"
49 | BUILD_NUMBER=${LATEST_BUILD}
50 | fi
51 |
52 | JAR_NAME=${PROJECT}-${MINECRAFT_VERSION}-${BUILD_NUMBER}.jar
53 |
54 | echo "Version being downloaded"
55 | echo -e "MC Version: ${MINECRAFT_VERSION}"
56 | echo -e "Build: ${BUILD_NUMBER}"
57 | echo -e "JAR Name of Build: ${JAR_NAME}"
58 | DOWNLOAD_URL=https://papermc.io/api/v2/projects/${PROJECT}/versions/${MINECRAFT_VERSION}/builds/${BUILD_NUMBER}/downloads/${JAR_NAME}
59 | fi
60 |
61 | SERVER_JARFILE=server.jar
62 | echo -e "Running curl -o ${SERVER_JARFILE} ${DOWNLOAD_URL}"
63 |
64 | if [ -f ${SERVER_JARFILE} ]; then
65 | mv ${SERVER_JARFILE} ${SERVER_JARFILE}.old
66 | fi
67 |
68 | curl -o ${SERVER_JARFILE} ${DOWNLOAD_URL}
69 |
70 | if [ ! -f server.properties ]; then
71 | echo -e "Downloading MC server.properties"
72 | curl -o server.properties https://raw.githubusercontent.com/parkervcp/eggs/master/minecraft/java/server.properties
73 | fi
74 |
--------------------------------------------------------------------------------
/JavaInstallScripts/SpigotInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # @Author LordOfWizard
4 |
5 | MAIN_DIR=$PWD
6 | echo "This will install the latest spigot version.. if you want custom version change the BUILD_URL in JavaInstallScript/SpigotInstall file"
7 | BUILD_URL=https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar
8 |
9 | #checking the directories thingy
10 | cd ..
11 | mkdir -p server
12 | cd server/
13 |
14 | # downloading the damn BuildTools.jar
15 | wget -q $BUILD_URL
16 | echo -e "
17 | _________ _________ _______ _________ _ _
18 | \__ __/|\ /|\__ __/( ____ \ |\ /|\__ __/( \ ( \
19 | ) ( | ) ( | ) ( | ( \/ | ) ( | ) ( | ( | (
20 | | | | (___) | | | | (_____ | | _ | | | | | | | |
21 | | | | ___ | | | (_____ ) | |( )| | | | | | | |
22 | | | | ( ) | | | ) | | || || | | | | | | |
23 | | | | ) ( |___) (___/\____) | | () () |___) (___| (____/\| (____/\
24 | )_( |/ \|\_______/\_______) (_______)\_______/(_______/(_______/
25 |
26 | _________ _______ _ _______ __________________ _______ _______
27 | \__ __/( ___ )| \ /\( ____ \ \__ __/\__ __/( )( ____ \
28 | ) ( | ( ) || \ / /| ( \/ ) ( ) ( | () () || ( \/
29 | | | | (___) || (_/ / | (__ | | | | | || || || (__
30 | | | | ___ || _ ( | __) | | | | | |(_)| || __)
31 | | | | ( ) || ( \ \ | ( | | | | | | | || (
32 | | | | ) ( || / \ \| (____/\ | | ___) (___| ) ( || (____/\
33 | )_( |/ \||_/ \/(_______/ )_( \_______/|/ \|(_______/
34 | "
35 | sleep 7
36 | clear
37 | sleep 1
38 | ../bin/java_bins/bin/java -jar BuildTools.jar
39 |
40 | # changing the name of the file to appropriate name...
41 |
42 | JAR=$(ls | grep spigot)
43 | mv $JAR server.jar
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/JavaInstallScripts/SpongeInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | sudo apt update -qq
3 | sudo apt install -y -qq wget
4 |
5 | cd ..
6 | mkdir -p server
7 | cd server
8 |
9 | sudo wget "https://repo.spongepowered.org/maven/org/spongepowered/spongevanilla/1.12.2-7.3.0/spongevanilla-1.12.2-7.3.0.jar" -o server.jar
10 |
--------------------------------------------------------------------------------
/JavaInstallScripts/VanillaInstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | sudo apt update -qq
3 | sudo apt install -y -qq jq curl
4 |
5 | cd ..
6 | mkdir -p server
7 | cd server
8 |
9 |
10 | # -- EDIT HERE | DO NOT EDIT ABOVE -- #
11 | # VANILLA_VERSION: https://launchermeta.mojang.com/mc/game/version_manifest.json
12 | # -- EDIT HERE | DO NOT EDIT BELOW -- #
13 |
14 |
15 | LATEST_VERSION=`sudo curl -s https://launchermeta.mojang.com/mc/game/version_manifest.json | jq -r '.latest.release'`
16 | LATEST_SNAPSHOT_VERSION=`sudo -s curl https://launchermeta.mojang.com/mc/game/version_manifest.json | jq -r '.latest.snapshot'`
17 |
18 | echo -e "\nlatest version is $LATEST_VERSION"
19 | echo -e "latest snapshot is $LATEST_SNAPSHOT_VERSION"
20 |
21 | echo -e "\n> Enter minecraft version for server: "
22 | VANILLA_VERSION=latest
23 | read VANILLA_VERSION
24 |
25 | if [ -z "$VANILLA_VERSION" ] || [ "$VANILLA_VERSION" == "latest" ]; then
26 | MANIFEST_URL=$(curl -sSL https://launchermeta.mojang.com/mc/game/version_manifest.json | jq --arg VERSION $LATEST_VERSION -r '.versions | .[] | select(.id== $VERSION )|.url')
27 | elif [ "$VANILLA_VERSION" == "snapshot" ]; then
28 | MANIFEST_URL=$(curl -sSL https://launchermeta.mojang.com/mc/game/version_manifest.json | jq --arg VERSION $LATEST_SNAPSHOT_VERSION -r '.versions | .[] | select(.id== $VERSION )|.url')
29 | else
30 | MANIFEST_URL=$(curl -sSL https://launchermeta.mojang.com/mc/game/version_manifest.json | jq --arg VERSION $VANILLA_VERSION -r '.versions | .[] | select(.id== $VERSION )|.url')
31 | fi
32 |
33 | DOWNLOAD_URL=$(curl ${MANIFEST_URL} | jq .downloads.server | jq -r '. | .url')
34 | if [ -z $DOWNLOAD_URL ]
35 | then
36 | echo "Invalid version provided"
37 | exit 1
38 | fi
39 |
40 | echo -e "running: curl -o server.jar $DOWNLOAD_URL"
41 | sudo curl -o server.jar $DOWNLOAD_URL
42 |
43 | echo -e "Install Complete"
44 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Minecraft Cloud Shell & Colab (or anywhere cloud services) Tutorial & Info
2 |
3 | ---
4 |
5 | # THIS VERSION IS ARCHIVED FOR NOW. USE AT YOUR OWN RISK. BUILDS ARE CURRENTLY BEING REDEVELOPED ON THE [RS](https://github.com/lordofwizard/mcserver/tree/rs) BRANCH
6 |
7 | In this project, we'll teach you host your very own Java/Bedrock Minecraft Server using `Google Cloud Shell`. This works under `Ubuntu/Debian` based Linux operation system. This project requires **NO CREDIT CARD** and the whole project is entirely **FREE**! You can make a server without costing you anything.
8 |
9 | [](https://star-history.com/#lordofwizard/mcserver&Date)
10 |
11 | **The following features are added into this project are:**
12 | - Supports different type of Bedrock Servers
13 | - Clean & Friendly Interface
14 | - Supports Additional type of Java Server *(eg. Sponge, Paper, Fabric etc)*
15 | - Added Server Management
16 | - Easier functional scripts *(eg. [**./uninstall**](https://github.com/lordofwizard/mcserver/blob/main/README.md#uninstallremove-the-server) allows you to delete your server easily)*
17 | - Instant EULA script setup *(Completly skipping this part which makes other people's life much easier to manage)*
18 | - Faster Server Installation *(It would probably take you like approx 30 seconds to setup a server)*
19 |
20 | ## Need help?
21 | > [**Watch this Tutorial with LordOfWizard**](https://youtu.be/2CdQUmNKRJI) `Latest`
22 |
23 | > [**Watch this Tutorial with ArcticWoof**](https://youtu.be/0j0ijkwddz8) `Outdated`
24 |
25 | > [**Submit any Issues here**](https://github.com/lordofwizard/mcserver/issues)
26 |
27 | > [**Join the Discord Server**](https://discord.gg/V2R26jBEzN)
28 | ### To do list
29 | - [x] Asking the user for the specific version they want to run of java.
30 | - [x] Add 3rd party sources in the list.
31 | - [x] Automatic message typer for typing something on the server. (AFK APP)
32 | - [x] More easy way to upload files on google drive.(use cloud-shell editor)
33 | - [x] Update script.
34 | ### Server Specs:
35 | - **OS:** Debian GNU/Linux 10 (buster) x86_64
36 | - **RAM:** 8GB to 16GB
37 | - **Location:** Based on your physical location.
38 | - **Storage:** Approx 5GB
39 | - **CPU:** AMD EPYC (2) 7B12 @ 2.249GHz or Intel Xeon (4) @ 2.199GHz
40 |
41 | You can view your exact specs by doing `./specinfo`
42 |
43 | ### Service Used:
44 | - [playit.gg](https://playit.gg)
45 | - [console.cloud.google.com](https://console.cloud.google.com)
46 |
47 | ## Installation
48 | * Activate a [Google Cloud Shell](https://console.cloud.google.com/) on Google cloud.
49 | * Clone this GitHub Project into the Console:
50 | ```
51 | git clone https://github.com/stan0ne/MinecraftServer
52 | ```
53 | * Go into `mcserver` directory:
54 | ```
55 | cd mcserver
56 | ```
57 | * Allow all commands executable:
58 | ```
59 | chmod +x *
60 | ```
61 | * Run the Installation Script:
62 | ```
63 | ./install
64 | ```
65 | Follow the installation step shown in the console
66 | * Run the Start Server Script:
67 | ```
68 | ./startserver
69 | ```
70 | (You only need to do this if you chose `No`.)
71 |
72 | ## Java Server Additional Setup (You can skip this part)
73 | *(This only applies to Java Servers including Nukkit or the EULA script didn't work for you.)*
74 |
75 | If you first start up your server, it will fail to start because you need to accept the **EULA** to run properly.
76 |
77 | * Go to the server directory and accept the [EULA](https://www.minecraft.net/en-us/eula)
78 | ```
79 | cd server
80 | ```
81 | ```
82 | nano eula.txt
83 | ```
84 | * Be sure that `eula.txt` contains the following text below:
85 | ```
86 | eula=true
87 | ```
88 | Do `Ctrl + W` then press `Y` to save and press `Enter` exit the text editor.
89 | * Go back to the main directory:
90 | ```
91 | cd ..
92 | ```
93 | - And [Restart the Server](https://github.com/lordofwizard/mcserver/blob/main/README.md#restarting-your-server).
94 | * Now everything should be functional and ready. You can check if your server is up and running by doing `screen -r server`.
95 |
96 | ## Playit Installation (to create a tunnel and get links)
97 | * playit.gg makes it easy for friends to connect.
98 | - Install Playit
99 | ```
100 | curl -SsL https://playit-cloud.github.io/ppa/key.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/playit.gpg >/dev/null
101 | echo "deb [signed-by=/etc/apt/trusted.gpg.d/playit.gpg] https://playit-cloud.github.io/ppa/data ./" | sudo tee /etc/apt/sources.list.d/playit-cloud.list
102 | sudo apt update
103 | sudo apt install playit
104 | ```
105 | - Start Playit
106 | ```
107 | ./startPlayit
108 | ```
109 | - a playit link will be created for the tunnel, first create a free playit account by clicking on that link and then follow the instructions
110 |
111 | ## Joining your Server
112 | * To join your server, start your server by doing `./startserver` *(If you haven't started it yet)* and do this command:
113 | ```
114 | screen -r playit
115 | ```
116 | - Now click the **Claim URL** and it should show you your host IP and Tunnel Server.
117 | - Once your in that page, scroll down and click **Add Tunnel** on Minecraft Java/Bedrock and next to the **Local server address**, click **Add**.
118 | - Now copy the generated dedicated IP something along with `auto.playit.gg` and copy it into the Server Address in Minecraft and now you can play the server.
119 |
120 | *(Note: If you want to change the Claim URL, you need to Stop the Server. This will reset your server IP.)*
121 |
122 | ## Accessing Server Console
123 | * To access your server console, open this following session:
124 | ```
125 | screen -r server
126 | ```
127 | To completly stop the server, you can do `./stopserver` on the Linux console or do `exit` or `stop` on the Minecraft console
128 |
129 | ## Detaching Screen/Session
130 | * To Detach the session you can do it using the following keyboard shortcuts
131 | `CTRL + A` then press `D`
132 |
133 | ## Third-Party Launcher
134 | * If you are using like a cracked version of **Minecraft Java Edition**
135 |
136 | Example: [Tlauncher](https://tlauncher.org/en/)
137 |
138 | - Go to `server.properties` and find the properties `online-mode`:
139 | ```
140 | nano server.properties
141 | ```
142 | - Change it from `true` to `false`
143 | ```
144 | online-mode=false
145 | ```
146 | Do `Ctrl + W` then press `Y` to save and press `Enter` exit the text editor.
147 |
148 | - [Restart](https://github.com/lordofwizard/mcserver/blob/main/README.md#restarting-your-server) your server after you apply these changes.
149 |
150 | ## Access Server Files
151 | If you want to access your server files, go to `Open Editor` on the top right.
152 | - Once you there, if you don't see any folders on the left side, you can `Open Folder` and pick `mcserver` and go to `server` to view and modify anything inside.
153 | - If you made any changes on your server, restart your server.
154 | After you restarted your server, all the changes are saved into your server.
155 |
156 | ## Changing/Customize Variables
157 | If you want to change the variables inside the script or just tweak something for your server to work, you can change and edit the varibles/
158 | - To do this, go to either `/JavaInstallScripts` or `/BedrockInstallScripts` on `Cloud Shell Editor`
159 |
160 | The following `Java` servers are supported for custom variables:
161 | - **Fabric**
162 | - **Forge**
163 | - **Paper**
164 | - **Vanilla**
165 |
166 | The following `Bedrock` servers are supported for custom variables:
167 | - **Nukkit**
168 | - **PocketmineMP**
169 | - **Vanilla**
170 |
171 | These servers aren't supported for custom variables:
172 | - Sponge `Java` *(This server type is too old and it only supports direct download)*
173 | - GoMint `Bedrock` *(No Variables needed for this type of server)*
174 | ## Older Version
175 | If you are using older version of Minecraft check out [this](https://github.com/lordofwizard/mcserver/wiki/Version) documentation and install it according to your need:
176 |
177 | You can go inside the server scripts and edit **ONLY** on this section of the code:
178 | ```
179 | # -- EDIT HERE | DO NOT EDIT ABOVE -- #
180 | EXAMPLE_VARIBALES=VARIABLES # NOTE ABOUT VARIABLES
181 | # -- EDIT HERE | DO NOT EDIT BELOW -- #
182 | ```
183 |
184 | *(Note: Do not edit the code below and above as it will break the installation and you have to delete the project again.)*
185 |
186 | ## Restarting your Server
187 | If you don't know what restarting your server mean, here's the step.
188 | - Go to `mcserver` or `../mcserver/` directory and do this command.
189 | - Stop the server which stops both the Minecraft Server and Playit.gg tunneling system:
190 | ```
191 | ./stopserver
192 | ```
193 | - And now start your server again:
194 | ```
195 | ./startserver
196 | ```
197 | Now your server has fully restarted.
198 | ## Keeping the Server Alive 24/7
199 | There's only **ONE** way to keep your server online longer than 20 minutes:
200 | - You must Keep your browser open to keep your server online. This so the shell doesn't get terminated when it's unused or the browser is closed.
201 |
202 | *(Don't worry, your device that is being used to host your server isn't affected from the intensity of your server.)*
203 |
204 | If you have any method the would possibly keep the server alive 24/7, feel free to **Fork** this project and request a **Pull** to this project. Any help will be greatly appreciated.
205 |
206 | ## Limitation of this project
207 | ### Google Cloud Shell Quota
208 | While I was editing this project, I notice that Google has added a quota for each Cloud Shell uses and you can only host your server for the max of `50` hours per `Week`.
209 | Once you used all of the hours, you can't use it again until next week.
210 | ### No Dedicated IP
211 | Sadly you can't use the host IP into your dedicated IP as it won't let you join that server, you can only join your server by the generated dedicated IP provided by **playit.gg**. If you know how to reverse proxy the tunnel system, you *can* actually use the host IP to make a dedicated IP for your server but I highly doubt that would ever happen.
212 | ### Mixed Server Specs
213 | Each Cloud Shell session will have different specs of your server based on your physical location so you won't always get the best performance of your server but good news being that it's always the range between `8GB` to `16GB` so you won't have to worry about lag when playing in the server with high processing in your server.
214 |
215 | ## Uninstall/Remove the Server
216 | - If you want to make a new or delete your server, do this command inside `~/mcserver`:
217 | ```
218 | ./uninstall
219 | ```
220 | It will tell you if you really want to uninstall it or not.
221 |
222 | - This will remove the whole server folder and you can make a new one again by doing `./install`
223 | ## Deleting/Updating the whole Project
224 | This project will constantly update day after day until I make a perfect project. If you have install this project before and it has some lack of features, you can update the project by doing this steps.
225 | - First, go to the default folder
226 | ```
227 | cd
228 | ```
229 | - Now delete the whole project *(Be careful, backup/download your world folder FIRST before deleting it. You can't go back once you do this command)*:
230 | ```
231 | sudo rm -r mcserver
232 | ```
233 | If the project is completely deleted, you can [Clone the Project](https://github.com/lordofwizard/mcserver/blob/main/README.md#installation) again and it should be up to date with the new features and code from this project!
234 | ## Conclusion
235 | Now you can host your very own Minecraft Server for both Java & Bedrock fast and easy and it won't cost you a single penny to make a fast and strong server. Best of all, IT'S FOREVER! Feel free to leave any requests you would like me to add into the project. If you have any issues, go to the [**Issues**](https://github.com/lordofwizard/mcserver/issues) tab and submit a issue there.
236 | ## Credits
237 | > Project Creator: *[LordOfWizard](https://github.com/lordofwizard)*
238 |
239 | > Tutorial Creator: *[DumbCaveSpider](https://github.com/DumbCaveSpider)*
240 |
241 | > Project Maintainer: *[Silent-Crafter](https://github.com/Silent-Crafter)*
242 |
--------------------------------------------------------------------------------
/install:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | mkdir bin
3 | chmod +x *
4 | export MAIN_DIR=$PWD
5 | echo "Which Server do you want to install?"
6 | echo "Type [1] Java Server"
7 | echo "Type [2] Bedrock Server"
8 |
9 | choiceForServer=1
10 | read choiceForServer
11 |
12 | # Installing Java 16 JDK and playit
13 |
14 | #wget -q "https://download.oracle.com/java/17/archive/jdk-17.0.3_linux-x64_bin.tar.gz" -O bin/java.tar.xz
15 | wget -q "https://download.java.net/java/GA/jdk17.0.1/2a2082e5a09d4267845be086888add4f/12/GPL/openjdk-17.0.1_linux-x64_bin.tar.gz" -O bin/java.tar.xz
16 | cd $MAIN_DIR/bin
17 | echo "> Extracting Java JDK 16 to the bin/ folder. [THIS MAY TAKE SOME TIME] Replace it if you want to use older version of JAVA."
18 | tar -xf java.tar.xz && mv "jdk-17.0.1" java_bins
19 |
20 | cd $MAIN_DIR
21 | # If choice is 0 or null then run this command
22 | if [[ -z $choiceForServer ]]; then
23 |
24 | echo "> Invaild Respond. Please try again."
25 | ./install
26 |
27 | # If choice is 1 then run this command
28 | elif [[ $choiceForServer == 1 ]]; then
29 |
30 | echo "> Running Java Installation..."
31 | ./installJava
32 |
33 | # If choice is 1 then run this command
34 | elif [[ $choiceForServer == 2 ]]; then
35 |
36 | echo "> Running Bedrock Installation..."
37 | ./installBedrock
38 |
39 | else
40 | echo "> Invaild Respond. Please try again."
41 | ./install
42 | fi
43 | echo "> Installing AFK(Away From Keyboard) Script "
44 | python3 -m pip install bpytop
45 | echo ""
46 |
47 |
--------------------------------------------------------------------------------
/installBedrock:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | export MAIN_DIR=$PWD
3 | #Installing all the dependencise
4 | sudo apt install -qq screen neofetch wget unzip -y
5 |
6 | echo "export PATH=$PATH:/some/new/path" > ~/.profile
7 | echo "> Dependencies Installtion Completed!"
8 |
9 | #Downloading ngrok && Downloading Minecraft Server
10 | mkdir server
11 |
12 | echo ""
13 | echo "-- Pick the following Server type: --"
14 | echo "Type [1] Create Vanilla Server"
15 | echo "Type [2] Create GoMint Server"
16 | echo "Type [3] Create Nukkit Server (Extra Steps needed)"
17 | echo "Type [4] Create PocketmineMP Server"
18 |
19 |
20 | choiceForServer=1
21 | read choiceForServer
22 |
23 | # 0
24 | if [[ -z $choiceForServer ]]; then
25 |
26 | echo "> By Default you selected [1]"
27 | echo "> Installing Vanilla Server..."
28 | cd BedrockInstallScripts
29 | chmod +x *
30 | ./VanillaInstall
31 |
32 | # Vanilla
33 | elif [[ $choiceForServer == 1 ]]; then
34 |
35 | echo "> Installing Vanilla Server..."
36 | cd BedrockInstallScripts
37 | chmod +x *
38 | ./VanillaInstall
39 |
40 | # GoMint
41 | elif [[ $choiceForServer == 2 ]]; then
42 |
43 | echo "> Installing GoMint Server..."
44 | cd BedrockInstallScripts
45 | chmod +x *
46 | ./GoMintInstall
47 |
48 | # Nukkit
49 | elif [[ $choiceForServer == 3 ]]; then
50 |
51 | echo "> Installing Nukkit Server..."
52 | cd BedrockInstallScripts
53 | chmod +x *
54 | ./NukkitInstall
55 |
56 | # Pocketmine
57 | elif [[ $choiceForServer == 4 ]]; then
58 |
59 | echo "> Installing PocketmineMP Server..."
60 | cd BedrockInstallScripts
61 | chmod +x *
62 | ./PocketmineInstall
63 | # Otherwise
64 | else
65 | echo "> By Default, you selected [1]"
66 | echo "> Installing Vanilla Server..."
67 | cd BedrockInstallScripts
68 | chmod +x *
69 | ./VanillaInstall
70 | fi
71 |
72 | # Backup install playit.gg in case if first one doesn't download
73 | echo "> Installing Playit.gg..."
74 | cd ..
75 | #wget "https://playit.gg/downloads/playit-linux_64-0.4.6" -O playit
76 | wget -q "https://playit.gg/downloads/playit-0.8.1-beta" -O playit
77 | chmod +x playit
78 | echo "> Playit.gg Installation Completed!"
79 | echo ""
80 | echo "-- Do you want to start the server now? --"
81 | echo "Type [1] for Yes"
82 | echo "Type [2] for No"
83 |
84 | StartServer=2
85 | read StartServer
86 |
87 | if [[ -z $StartServer ]]; then
88 | echo "> By Default, you selected 'No'."
89 | echo "> You can start the server by do ./startserver"
90 |
91 | elif [[ $StartServer == 1 ]]; then
92 | ./startserver
93 |
94 | elif [[ $StartServer == 2 ]]; then
95 | echo "You picked 'No'."
96 | echo "> You can start the server by do ./startserver"
97 |
98 | else
99 | echo "> By Default, you selected 'No'."
100 | echo "> You can start the server by do ./startserver"
101 | fi
102 |
--------------------------------------------------------------------------------
/installJava:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | export THIS_DIR=$PWD
4 |
5 | install_server () {
6 | choice=$1
7 | if [[ -z $choice ]]
8 | then
9 | echo -e "\n> Installing Vanilla..."
10 | cd JavaInstallScripts
11 | chmod +x *
12 |
13 | ./VanillaInstall
14 | errorno=${?}
15 | if [ $errorno -eq 1 ]
16 | then
17 | cd $THIS_DIR
18 | install_server $choice
19 | fi
20 |
21 |
22 | # Vanilla
23 | elif [[ $choice == 1 ]]
24 | then
25 | echo -e "\n> Installing Vanilla..."
26 | cd JavaInstallScripts
27 | chmod +x *
28 |
29 | ./VanillaInstall
30 | errorno=${?}
31 | if [ $errorno -eq 1 ]
32 | then
33 | cd $THIS_DIR
34 | install_server $choice
35 | fi
36 |
37 | # Paper
38 | elif [[ $choice == 2 ]]
39 | then
40 | echo "> Installing Paper..."
41 | cd JavaInstallScripts
42 | chmod +x *
43 | ./PaperInstall
44 |
45 | # Forge
46 | elif [[ $choice == 3 ]]
47 | then
48 | echo "> Installing Forge..."
49 | cd JavaInstallScripts
50 | chmod +x *
51 | ./ForgeInstall
52 |
53 | # Sponge
54 | elif [[ $choice == 4 ]]
55 | then
56 | echo "> Installing Sponge..."
57 | cd JavaInstallScripts
58 | chmod +x *
59 | ./SpongeInstall
60 |
61 | # Fabric
62 | elif [[ $choice == 5 ]]
63 | then
64 | echo "> Installing Fabric..."
65 | cd JavaInstallScripts
66 | chmod +x *
67 | ./FabricInstall
68 |
69 |
70 | elif [[ $choice == 6 ]];then
71 | echo "> Installing Spigot..."
72 | cd JavaInstallScripts
73 | chmod +x *
74 | ./SpigotInstall
75 |
76 |
77 | elif [[ $choice == 7 ]];then
78 | echo "> Installing Bungeecord..."
79 | cd JavaInstallScripts
80 | chmod +x *
81 | ./BungeecordInstall
82 |
83 |
84 | # Invaild Input
85 | else
86 | echo "Invaild Responds! Please try again"
87 | ./installJava
88 | fi
89 | }
90 |
91 | #Installing all the dependencise
92 | sudo apt install -y -qq screen neofetch
93 |
94 | echo "export PATH=$PATH:/some/new/path" > ~/.profile
95 | echo "> Dependencies Installtion Completed!"
96 |
97 | #Downloading ngrok && Downloading Minecraft Server
98 | mkdir server
99 |
100 | echo ""
101 | echo "-- Pick the following Server type: --"
102 | echo "Type [1] Create Vanilla Server"
103 | echo "Type [2] Create Paper Server"
104 | echo "Type [3] Create Forge Server"
105 | echo "Type [4] Create Sponge Server"
106 | echo "Type [5] Create Fabric Server"
107 | echo "Type [6] Create Spigot Server(COMPILE)"
108 | echo "Type [7] Create Bungeecord Server(latest)"
109 | choiceForServer=1
110 | read choiceForServer
111 |
112 | install_server $choiceForServer
113 |
114 | # Backup install playit.gg in case if first one doesn't download
115 | echo "> Installing Playit.gg..."
116 | cd ..
117 | #wget "https://playit.gg/downloads/playit-linux_64-0.4.2-rc1" -O playit
118 | #wget -q "https://playit.gg/downloads/playit-linux_64-0.4.6" -O playit
119 | #wget -q "https://new.playit.gg/downloads/playit-0.7.0-beta" -O playit
120 | #wget -q "https://playit.gg/downloads/playit-0.7.5-beta" -O playit
121 | #wget -q "https://playit.gg/downloads/playit-0.8.1-beta" -O playit
122 | #chmod +x playit
123 |
124 | # NOte this is directly downloaded from the playit repository, anything can happen.
125 | curl -SsL https://playit-cloud.github.io/ppa/key.gpg | sudo apt-key add -
126 | sudo curl -SsL -o /etc/apt/sources.list.d/playit-cloud.list https://playit-cloud.github.io/ppa/playit-cloud.list
127 | sudo apt update
128 | sudo apt install playit
129 |
130 | echo "> Playit.gg Installation Completed!"
131 | echo ""
132 | echo "-- Do you want to start the server now? --"
133 | echo "Type [1] for Yes"
134 | echo "Type [2] for No"
135 |
136 | StartServer=2
137 | read StartServer
138 |
139 | if [[ -z $StartServer ]]; then
140 | echo "> By Default, you selected 'No'."
141 | echo "> You can start the server by do ./startserver"
142 |
143 | elif [[ $StartServer == 1 ]]; then
144 | ./startserver
145 |
146 | elif [[ $StartServer == 2 ]]; then
147 | echo "You picked 'No'."
148 | echo "> You can start the server by do ./startserver"
149 |
150 | else
151 | echo "> By Default, you selected 'No'."
152 | echo "> You can start the server by do ./startserver"
153 | fi
154 |
--------------------------------------------------------------------------------
/startAfk:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | FILE=$HOME/.local/bin/bpytop
3 | if test -f "$FILE"; then
4 | echo "bpytop is already installed (AFK APP RUNNING) exists."
5 | else
6 | echo "bpytop is not installed. Installing AFK app. (This may take some time)."
7 | python3 -m pip install bpytop
8 | fi
9 | $FILE
10 |
--------------------------------------------------------------------------------
/startBedrockServer:
--------------------------------------------------------------------------------
1 | cd server
2 | chmod +x *
3 | ./bedrock_server
4 |
--------------------------------------------------------------------------------
/startJavaServer:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | export MAIN_DIR=$PWD
3 | export JAVA=$MAIN_DIR/bin/java_bins/bin/java
4 | cd server
5 |
6 | mem=$(grep MemTotal /proc/meminfo | sed -e 's/MemTotal:[ ]*//' | sed -e 's/ kB//') # some new stuff
7 |
8 | mem=$(($mem/1024/1024))
9 |
10 | #uncomment this below line only if the server you are running is 1.17+ (if it is uncommented by default keep it as it is).
11 | $JAVA -Xmx${mem}G -Xms${mem}G -jar server.jar nogui
12 | # for 1.16 or lower uncomment this line
13 | #java -Xmx${mem}G -Xms${mem}G -jar server.jar nogui
14 |
--------------------------------------------------------------------------------
/startPlayIt:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | export MAIN_DIR=$PWD
3 |
4 | cd $MAIN_DIR
5 | playit
6 |
--------------------------------------------------------------------------------
/startserver:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | export MAIN_DIR=$PWD
3 | echo "> Starting the server up. Please wait..."
4 | echo "> Installing Dependencise..."
5 |
6 | sudo apt install -y -qq screen wget
7 |
8 | echo "> Dependencise Installed!"
9 |
10 | echo "> Checking Server Type..."
11 | if [ -f $MAIN_DIR/server/bedrock_server ]; then
12 |
13 | echo "> Bedrock Server Detected! Starting Server up..."
14 |
15 | elif [ ! -f $MAIN_DIR/server/eula.txt ]; then
16 |
17 | cd $MAIN_DIR/server
18 | echo "> EULA doesn't exist! Creating one!"
19 | echo "eula=true" > eula.txt
20 | echo "> EULA Completed! Restarting Server"
21 | cd $MAIN_DIR
22 | screen -S server -d -m ./startJavaServer
23 | clear
24 | echo "> Your server just doing a second restart to fix the EULA file."
25 | killall screen
26 | ./startserver
27 | exit
28 | elif [ -f $MAIN_DIR/server/eula.txt ]; then
29 | echo "> EULA Detected! Starting Server up..."
30 |
31 | else
32 | echo "> Your server isn't setup properly. Force uninstall..."
33 | cd $MAIN_DIR
34 | ./uninstall
35 | echo "> Comfirmed Uninstallation! Restarting Installation..."
36 | ./install
37 | fi
38 |
39 | # apparently ppl keep spamming startserver and end up having multiple screens of the same app
40 | killall screen
41 |
42 | screen -S server -d -m ./startJavaServer # Starting Java Server
43 | screen -S server -d -m ./startBedrockServer # Starting Bedrock Server
44 | screen -S afk -d -m ./startAfk #Starting AFK app aka bpytop.
45 | screen -S playit -d -m ./startPlayIt # Starting Playit
46 |
47 | cd $MAIN_DIR/server
48 | screen -S server -d -m ./bin/php7/bin/php ./PocketMine-MP.phar --no-wizard --disable-ansi # Starting PocketmineMP
49 | screen -S server -d -m java --add-opens java.base/java.nio=io.netty.common --add-exports java.base/jdk.internal.misc=io.netty.common -p modules -m gomint.server/io.gomint.server.Bootstrap # Starting GoMint
50 | cd $MAIN_DIR
51 |
52 | echo "-- Your Server is now ONLINE! --"
53 | echo
54 | echo "Type [screen -ls] to check the Running Processes"
55 | echo "Type [screen -r server] to enter the Server Console"
56 | echo "Type [screen -r playit] to view your Server IP"
57 | echo ""
58 | echo "> To stop your server, type './stopserver' to stop"
59 |
60 | echo -e '\nchecking if server has launched properly'
61 | ./.checkserver 2> crash.log
62 |
--------------------------------------------------------------------------------
/stopserver:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | clear
3 | echo "> Server Terminated!"
4 | echo ""
5 | echo "To run again, type './startserver' to reboot your server."
6 | echo "To delete your server, type './uninstall' to uninstall and delete your server."
7 |
8 | # Kill all Screen
9 | killall screen
10 |
--------------------------------------------------------------------------------
/uninstall:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | export MAIN_DIR=$PWD
3 | echo "> Checking..."
4 |
5 | # Begin Uninstalling Server
6 | if [ ! -d $MAIN_DIR/server ]; then
7 |
8 | echo "> You haven't installed the server yet..."
9 |
10 |
11 | elif [ -d $MAIN_DIR/server ]; then
12 | echo "> Server Folder Detected!"
13 | echo " -- Are you sure you want to uninstall and delete your server? --"
14 | echo "Type [1] for Yes"
15 | echo "Type [2] for No"
16 |
17 | UninstallPick=1
18 | read UninstallPick
19 |
20 | if [[ -z $UninstallPick ]]; then
21 |
22 | echo "> By Default, you selected 'No'"
23 | echo "> Abort!"
24 |
25 | elif [[ $UninstallPick == 1 ]]; then
26 | sudo rm -r server
27 | sudo rm -rf bin
28 | killall screen
29 | echo "> Uninstall Complete! To make a new server, do ./install"
30 |
31 | elif [[ $UninstallPick == 2 ]]; then
32 | echo "> Abort!"
33 |
34 | else
35 | echo "> Abort!"
36 | fi
37 | fi
38 |
--------------------------------------------------------------------------------
/update:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | echo ''
4 | echo '######################################################'
5 | echo '##### THIS JUST UPDATES THE MCSERVER PROJECT #####'
6 | echo '##### NOT YOUR MINECRAFT SERVER #####'
7 | echo '######################################################'
8 | echo ''
9 |
10 | mkdir -p $PWD/../update_files
11 |
12 | git clone https://github.com/lordofwizard/mcserver $PWD/../update_files/
13 | rm ../update_files/startserver ../update_files/startJavaServer ../update_files/startBedrockServer
14 |
15 | # some java/bedrock installs overwrite the startup scripts
16 | if [ -d 'server' ]; then
17 | mv ./server/ ../update_files
18 | mv ./startserver ../update_files
19 | mv ./startJavaServer ../update_files
20 | mv ./startBedrockServer ../update_files
21 | mv ./bin/ ../update_files/
22 | fi
23 | rm -rf *
24 | mv ../update_files/* .
25 | rm -rf ../update_files
26 |
27 | echo -e '\n done \n'
28 |
--------------------------------------------------------------------------------