我使用了这一版最佳答案中提供的代码:。 用于排雷服务器的批量中需要自动识别码
然而,我不清楚选择职能何时运作。
此外,我没有选择方案。 如同服务器一样,我只向60位第二位负责人表示,他们将重新启动,然后重新启动。
感谢任何帮助!
The Code from the previous response:
@echo off
title minecraft-server-1.8.3
color 0A
prompt [server]:
cls
:start
echo loading server...
java -Xms3G -Xmx3G -jar minecraft_server.1.8.3.jar nogui
cls
:choice
set /P a=do you want to restart[Y/N]?
if /I "%a%" EQU "Y" goto :restart
if /I "%a%" EQU "N" goto :stop
goto :choice
:restart
cls
echo server will restart
TIMEOUT /T 5
cls
goto :start
:stop
cls
echo closing server
TIMEOUT /T 5
exit