Problem Start.bat only asks for EULA

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Jatiyer

New Member
Apr 28, 2020
0
0
1
Omnia 1.2.0 running on Windows 10

Hello, when i run Start.bat CMD opens and ask if agree to the EULA. hitting Y and enter creates the eula.txt with eula=true but after that it still only opens to the CMD prompt asking to agree to the EULA. Running the the minecraft_server.1.15.2.JAR starts the server where people can connect but with only a minimal amount of RAM. Below is the contents of Start.bat

@Echo off
echo "Do you agree to the Mojang EULA available at https://account.mojang.com/documents/minecraft_eula ?"
set /p EULA=[y/n]
IF /I "%EULA%" NEQ "y" GOTO END
echo eula=true>eula.txt
:END
java.exe -server -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -Xmx6124M -Xms4096M -jar nogui
 

grandrolf

Global moderator
Team Member
Global Moderator
Trusted User
Aug 29, 2014
2,658
246
133
sweden
Where did you install the pack - location, example c:\.... ?

Do you have any 3rd party antivirus on your machine?
 

Jatiyer

New Member
Apr 28, 2020
0
0
1
i have it installed on my G drive. I managed to get it working by editing start.bat to
Code:
@echo off
cd /d g:\Minecraft
java.exe -server -XX:+UseG1GC -XX:+UnlockExperimentalVMOptions -Xmx6124M -Xms6124M -jar forge-1.15.2-31.1.45.jar nogui
echo Server closed, Ctrl-C to quit or Enter to restart.
pause