Tworzenie skryptu uruchamiania

Informacja

Te instrukcje dotyczą tylko sytuacji, gdy zamierzasz uruchomić serwer Minecraft na własnym komputerze. Większość współdzielonych hostingów serwerów Minecraft stworzy je dla ciebie.

Pisanie skryptu uruchamiania

First, open a text editor such as Atom, Sublime Text, or Notepad. Write (or paste) a launch script for your server. Examples of simple launch scripts for Windows, macOS, and Linux have been provided below. Keep the RAM limitations of your machine in mind.

Informacja

The following examples are generic. For a Forge server using Sponge (coremod), change forge-1.12.2-XYZ-universal.jar to whatever your Forge version in the server directory is named. To launch a SpongeVanilla server, change forge-1.12.2-XYZ-universal.jar to the name of the SpongeVanilla.jar file.

Windows

java -Xms1G -Xmx2G -jar forge-1.12.2-XYZ-universal.jar
pause

Zapisz swój skrypt uruchamiania dla Windows jako launch.bat.

Ostrzeżenie

Launching your server in a Command Prompt or PowerShell environment can lead to the server hanging due to the Quick Edit Mode of these shells. This mode freezes the process when you highlight something or click inside the console window. During this time, messages captured in the log will state that the server skipped many seconds or minutes worth of ticks. You can prevent this from occurring by not highlighting any text on the screen and not clicking inside the window, or by disabling the Quick Edit Mode in the Properties dialogue.

macOS

#!/bin/bash
cd "$(dirname "$0")"
java -Xms1G -Xmx2G -jar forge-1.12.2-XYZ-universal.jar

Zapisz swój skrypt uruchamiania dla Mac jako launch.command.

Linux

#!/bin/sh
cd "$(dirname "$(readlink -fn "$0")")"
java -Xms1G -Xmx2G -jar forge-1.12.2-XYZ-universal.jar

Zapisz swój skrypt uruchamiania dla Linux jako launch.sh.

Uruchamianie skryptu uruchamiania

Upewnij się, że uruchamiasz skrypt w folderze przeznaczonym konkretnie dla twojego serwera. To dla twojego zdrowego rozsądku. Spongie nie jest w stanie wytrzeć twoich łez jeżeli tego nie zrobisz.

Możesz uruchomić swój skrypt uruchomiania poprzez podwójne kliknięcie. Jeżeli używasz wiersza poleceń lub terminala, przejdź do katalogu ze skryptem i uruchom go. Weź pod uwagę, że musisz zgodzić się na warunku Mojang EULA, aby uruchomić serwer.

Informacja

The default Minecraft server GUI console is disabled by Sponge, because it is very processor-intensive.

Ostrzeżenie

Jeżeli otrzymujesz błąd uprawnień podczas próby uruchomienia swojego serwera pod Mac, spróbuj tego:

  • Otwórz Terminal.

  • Wpisz chmod a+x, ze spacją na końcu.

  • Przeciągnij skrypt uruchamiania do terminala.

  • Naciśnij enter.