Okay, so I can't start my own server and I don't know what to do! When I try to run start_server.bat , it says something about like: Java is not recongnized... can't run, press any key.
Any help?
Hey, this is what it says in finnish:
"Java ei tunnistettu sisäiseksi tai ulkoiseksi komennoksi, suoritettavaksi ohjelmaksi tai komennoksi.
Jatka painamalla mitä tahansa näppäintä..."
Yes I did, no use :(
I had that problem too, what you need to do is
Open the run batch file with notepad
in the begginning it says "java"
Replace that with the path to java.exe
Oh... and save it
Example:
Original:
@echo off
java -Xms512M
-Xmx512M -cp minecraft-server.jar
com.mojang.minecraft.server.MinecraftServer
pause
New and working:
@echo off
"C:\Program Files (x86)\Java\jre6\bin\java.exe" -Xms512M -Xmx512M -cp minecraft-server.jar com.mojang.minecraft.server.MinecraftServer
pause
WoM Coins: 18
Did you try redownloading java?