Initial commit

This commit is contained in:
2024-11-27 09:37:03 +00:00
parent b26c6ebe44
commit dcd24a0d29
10 changed files with 190 additions and 0 deletions

13
start.bat Normal file
View File

@@ -0,0 +1,13 @@
@echo off
echo Minecraft Server IP Addresses:
echo ========================
echo Local IPs:
ipconfig | findstr /i "IPv4"
echo.
echo Public IP:
powershell -Command "(Invoke-WebRequest -uri 'https://api.ipify.org/').Content"
echo ========================
echo.
echo Starting Minecraft Server...
java -Xmx16384M -Xms16384M -jar minecraft_server.1.21.3.jar nogui
pause