I just got a new laptop everything fully updated, dedicated graphics, i7, 8gb ram, and it runs 64. i have the 64 version of java and no earlier version. when i play minecraft, the first three or more minutes are just blue sky and my arm; nothing loads but clouds. After some loads, and i move away in creative mode, only a small chunk ever loads, nothing comes. if i go to the menu and quit, it freezes right there. i can only quit via task manager, where it says that Java is not responding. I am able to run much larger, more demanding games with no issues, so ibelieve it is specific to minecraft/java. I have also made sure to change all the settings within minecraft to the simplest possible, it changes nothing. Im not great with computers in general, but i found the advanced minecraft error test, the results are as follows:
@ECHO OFF This nice an advanced minecraft error test, is brought to you by theFriedZombie from MesiaPK gaming Please do not rehost elsewhere and modify branding
This is version V1.1
setlocal enabledelayedexpansion
echo
<br />call :start<br />echo.<br />echo ==Computer info==<br />echo.<br />call :bios "SystemManufacturer"<br />call :bios "SystemProductName"<br />call :bios "SystemFamily"<br />call :bios "SystemVersion"<br />echo Processor: %PROCESSOR_IDENTIFIER%<br />FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic computersystem get NumberOfProcessors /value') DO echo NumberOfProcessors: %%A</p><p>echo.<br />call :memory<br />echo.<br />call :windows "ProductName"<br />set winVer=%RETURN%<br />call :windows "CSDVersion"<br />set winVer=%winVer%, %RETURN%<br />set osBit=32<br />if "%PROCESSOR_ARCHITECTURE%"=="AMD64" set osBit=64<br />echo OS: %winVer%, %osBit%bits<br />echo.<br />echo userprofile: %userprofile%<br />echo %userprofile% | findstr ! > nul 2>&1<br />if %errorlevel%==0 (<br />echo Your user profile name has an "!" in it, java doesn't like that<br />echo. <br />echo Aborting script now.<br />goto end<br />)<br />echo.<br />echo ==Video controller info==<br />call :video<br />echo Tip of the day: http://www.pcidatabase.com/<br />echo great source for looking up unkown devices<br />echo.<br />echo ==Java info==<br />echo.<br />call :java || (<br />echo Issue detected with java, ending script now!<br />goto end<br />)</p><p><br />echo.<br />echo ==Minecraft pre-tests==<br />echo.<br />set logReach=1<br />call :login login.minecraft.net || ( set logREach=0 )<br />call :login session.minecraft.net || ( set logReach=0 )<br />if %logReach%==0 (<br />echo Make sure your internet connection is working,<br />echo and no firewall or virus scanner is interfering with the connection.<br />call :login www.google.com<br />)</p><p>echo.<br />if not exist "%appdata%\.minecraft\" (<br />echo Warning: the directory "%appdata%\.minecraft\" does not exist<br />if "%~1"=="" goto exe<br />)<br />dir /s /b "%appdata%\.minecraft\*.class" > nul 2>&1<br />if %errorlevel%==0 (<br />echo.<br />echo Warning: class files found within the minecraft directory!<br />echo They can cause for issues while starting minecraft.<br />echo Did you unpack a jar file?<br />echo The explorer extension binding can tell that the jar was zip<br />echo But it is really not a zip!<br />echo.<br />echo continuing anyway<br />)<br />if not "%~1"=="" goto custom</p><p>if not exist "%appdata%\.minecraft\bin\minecraft.jar" (<br />echo Warning: "the file %appdata%\.minecraft\bin\minecraft.jar" does not exists<br />if exist "%appdata%\.minecraft\bin\minecraft.zip" (<br />echo %appdata%\.minecraft\bin\minecraft.zip, was found<br />echo it can be that the file was saved to zip by accident<br />echo Internet explorer sometimes does that<br />echo Try renaming it to minecraft.jar<br />)<br />goto exe<br />)</p><p>echo Trying to start the minecraft.jar<br />echo ==End of pre-tests and info, minecraft starts here==<br />echo.<br />java -Xincgc -Xmx1024m -cp "%APPDATA%\.minecraft\bin\minecraft.jar;%APPDATA%\.minecraft\bin\lwjgl.jar;%APPDATA%\.minecraft\bin\lwjgl_util.jar;%APPDATA%\.minecraft\bin\jinput.jar" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft player</p><p>goto end<br />exit /b 0</p><p>:custom<br />echo Trying to start "%~1"<br />echo ==End of pre-tests and info, minecraft starts here==<br />java -Xincgc -Xmx1024m -jar "%~1"<br />goto end</p><p>:exe<br />if exist minecraft.exe (<br />echo Trying to start the minecraft.exe<br />echo ==End of pre-tests and info, minecraft starts here==<br />echo.<br />java -Xincgc -Xmx1024m -jar minecraft.exe<br />) else (<br />echo.<br />echo The minecraft.exe can not be found in the current directory.<br />echo Put the minecraft.exe in the same directory as this batch script!<br />echo and run the batch again.<br />echo Or drag the minecraft.exe on top of this batch file<br />)<br />:end<br />echo.<br />echo ==End of script==<br />echo.<br />echo.<br />echo Right click, Select all, <br />echo Press Enter (This will copy the output to your clipboard). <br />echo Then paste the result on http://www.pastebin.com<br />echo Or your favourite forum.<br />echo.<br />echo ===========Brought to you by============<br />echo ===theFriedZombie from MesiaPK Gaming===<br />echo http://www.mesiapk.com<br />echo
copy con nul
exit /b 0
End of the simple batch stuff!
:login <value>
setlocal
SET value=%1
ping -w 10 -n 1 %value% 2>&1 | findstr "Pinging" > nul 2>&1
if %errorlevel%==0 (
echo %value% resolvable? YES
) else (
echo %value% resolvable? NO
exit /b 1
)
endlocal
exit /b 0
:java
setlocal
echo Java location according to the path variable:
where java.exe 2> nul
echo.
java -version 2> nul
if %errorlevel%==9009 (
echo can execute java? NO
exit /b 1
) else (
echo can execute java? YES
)
echo.
java -version 2>&1 | findstr "64-Bit" > nul 2>&1
if %errorlevel%==0 (
echo java is 64 bit
) else (
echo java is 32 bit
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" Echo Warning: 64Bit java is recommended, on this machine!
)
echo.
java -version
)
endlocal
exit /b 0
:start
setlocal
title ==Advanced Minecraft error test V1.0== - by theFriedZombie from MesiaPK gaming
echo ==Advanced Minecraft error test v1.0== - by theFriedZombie
endlocal
exit /b 0
:memory
setlocal
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic memorychip GET Capacity /VALUE 2^>nul') DO CALL :memInstall %%A
set memInst=%SLO1%
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic computersystem get TotalPhysicalMemory /VALUE') DO CALL :memCalc %%A
set memAvail=%RETURN%
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic os get FreePhysicalMemory /VALUE') DO set memFree=%%A
set /A memFree=%memFree:~0,-1%/1024
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic pagefile get AllocatedBaseSize /VALUE') DO set virtAlloc=%%A
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic os get FreeVirtualMemory /VALUE') DO set virtFree=%%A
set /A virtFree=%virtFree:~0,-1%/1024
::functions and other stuff down here
:windows <value>
setlocal
set TESTK1=HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion
set TESTK2=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion
set TESTV=%~1
call :reg_read "%TESTK1%" "%TESTV%" || (
call :reg_read "%TESTK2%" "%TESTV%" || (set RETURN=)
)
set data=%RETURN%
endlocal & set RETURN=%data%
exit /b 0
The advanced minecraft error test is an old program and i'm not sure if it has any use now, plus it won't show an error inside minecraft itself, its more for minecraft nor loading at all.
Goto minecrafts video settings, and turn mipmaps to off.
if this doesn't work try toggling the VBO's setting, and post a dxdiag log
I just got a new laptop everything fully updated, dedicated graphics, i7, 8gb ram, and it runs 64. i have the 64 version of java and no earlier version. when i play minecraft, the first three or more minutes are just blue sky and my arm; nothing loads but clouds. After some loads, and i move away in creative mode, only a small chunk ever loads, nothing comes. if i go to the menu and quit, it freezes right there. i can only quit via task manager, where it says that Java is not responding. I am able to run much larger, more demanding games with no issues, so ibelieve it is specific to minecraft/java. I have also made sure to change all the settings within minecraft to the simplest possible, it changes nothing. Im not great with computers in general, but i found the advanced minecraft error test, the results are as follows:
@ECHO OFF
This nice an advanced minecraft error test, is brought to you by theFriedZombie from MesiaPK gaming
Please do not rehost elsewhere and modify branding
setlocal enabledelayedexpansion
echo
<br />call :start<br />echo.<br />echo ==Computer info==<br />echo.<br />call :bios "SystemManufacturer"<br />call :bios "SystemProductName"<br />call :bios "SystemFamily"<br />call :bios "SystemVersion"<br />echo Processor: %PROCESSOR_IDENTIFIER%<br />FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic computersystem get NumberOfProcessors /value') DO echo NumberOfProcessors: %%A</p><p>echo.<br />call :memory<br />echo.<br />call :windows "ProductName"<br />set winVer=%RETURN%<br />call :windows "CSDVersion"<br />set winVer=%winVer%, %RETURN%<br />set osBit=32<br />if "%PROCESSOR_ARCHITECTURE%"=="AMD64" set osBit=64<br />echo OS: %winVer%, %osBit%bits<br />echo.<br />echo userprofile: %userprofile%<br />echo %userprofile% | findstr ! > nul 2>&1<br />if %errorlevel%==0 (<br />echo Your user profile name has an "!" in it, java doesn't like that<br />echo. <br />echo Aborting script now.<br />goto end<br />)<br />echo.<br />echo ==Video controller info==<br />call :video<br />echo Tip of the day: http://www.pcidatabase.com/<br />echo great source for looking up unkown devices<br />echo.<br />echo ==Java info==<br />echo.<br />call :java || (<br />echo Issue detected with java, ending script now!<br />goto end<br />)</p><p><br />echo.<br />echo ==Minecraft pre-tests==<br />echo.<br />set logReach=1<br />call :login login.minecraft.net || ( set logREach=0 )<br />call :login session.minecraft.net || ( set logReach=0 )<br />if %logReach%==0 (<br />echo Make sure your internet connection is working,<br />echo and no firewall or virus scanner is interfering with the connection.<br />call :login www.google.com<br />)</p><p>echo.<br />if not exist "%appdata%\.minecraft\" (<br />echo Warning: the directory "%appdata%\.minecraft\" does not exist<br />if "%~1"=="" goto exe<br />)<br />dir /s /b "%appdata%\.minecraft\*.class" > nul 2>&1<br />if %errorlevel%==0 (<br />echo.<br />echo Warning: class files found within the minecraft directory!<br />echo They can cause for issues while starting minecraft.<br />echo Did you unpack a jar file?<br />echo The explorer extension binding can tell that the jar was zip<br />echo But it is really not a zip!<br />echo.<br />echo continuing anyway<br />)<br />if not "%~1"=="" goto custom</p><p>if not exist "%appdata%\.minecraft\bin\minecraft.jar" (<br />echo Warning: "the file %appdata%\.minecraft\bin\minecraft.jar" does not exists<br />if exist "%appdata%\.minecraft\bin\minecraft.zip" (<br />echo %appdata%\.minecraft\bin\minecraft.zip, was found<br />echo it can be that the file was saved to zip by accident<br />echo Internet explorer sometimes does that<br />echo Try renaming it to minecraft.jar<br />)<br />goto exe<br />)</p><p>echo Trying to start the minecraft.jar<br />echo ==End of pre-tests and info, minecraft starts here==<br />echo.<br />java -Xincgc -Xmx1024m -cp "%APPDATA%\.minecraft\bin\minecraft.jar;%APPDATA%\.minecraft\bin\lwjgl.jar;%APPDATA%\.minecraft\bin\lwjgl_util.jar;%APPDATA%\.minecraft\bin\jinput.jar" -Djava.library.path="%APPDATA%\.minecraft\bin\natives" net.minecraft.client.Minecraft player</p><p>goto end<br />exit /b 0</p><p>:custom<br />echo Trying to start "%~1"<br />echo ==End of pre-tests and info, minecraft starts here==<br />java -Xincgc -Xmx1024m -jar "%~1"<br />goto end</p><p>:exe<br />if exist minecraft.exe (<br />echo Trying to start the minecraft.exe<br />echo ==End of pre-tests and info, minecraft starts here==<br />echo.<br />java -Xincgc -Xmx1024m -jar minecraft.exe<br />) else (<br />echo.<br />echo The minecraft.exe can not be found in the current directory.<br />echo Put the minecraft.exe in the same directory as this batch script!<br />echo and run the batch again.<br />echo Or drag the minecraft.exe on top of this batch file<br />)<br />:end<br />echo.<br />echo ==End of script==<br />echo.<br />echo.<br />echo Right click, Select all, <br />echo Press Enter (This will copy the output to your clipboard). <br />echo Then paste the result on http://www.pastebin.com<br />echo Or your favourite forum.<br />echo.<br />echo ===========Brought to you by============<br />echo ===theFriedZombie from MesiaPK Gaming===<br />echo http://www.mesiapk.com<br />echocopy con nul
exit /b 0
:login <value>
setlocal
SET value=%1
ping -w 10 -n 1 %value% 2>&1 | findstr "Pinging" > nul 2>&1
if %errorlevel%==0 (
echo %value% resolvable? YES
) else (
echo %value% resolvable? NO
exit /b 1
)
endlocal
exit /b 0
:java
setlocal
echo Java location according to the path variable:
where java.exe 2> nul
echo.
java -version 2> nul
if %errorlevel%==9009 (
echo can execute java? NO
exit /b 1
) else (
echo can execute java? YES
)
echo.
java -version 2>&1 | findstr "64-Bit" > nul 2>&1
if %errorlevel%==0 (
echo java is 64 bit
) else (
echo java is 32 bit
if "%PROCESSOR_ARCHITECTURE%"=="AMD64" Echo Warning: 64Bit java is recommended, on this machine!
)
echo.
java -version
)
endlocal
exit /b 0
:video
setlocal
wmic /namespace:\\root\cimv2 path Win32_VideoController get Caption, Description, DriverVersion, InstalledDisplayDrivers, Name, PNPDeviceID, Status, StatusInfo, ConfigManagerErrorCode /value
endlocal
exit /b 0
:start
setlocal
title ==Advanced Minecraft error test V1.0== - by theFriedZombie from MesiaPK gaming
echo ==Advanced Minecraft error test v1.0== - by theFriedZombie
endlocal
exit /b 0
:memory
setlocal
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic memorychip GET Capacity /VALUE 2^>nul') DO CALL :memInstall %%A
set memInst=%SLO1%
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic computersystem get TotalPhysicalMemory /VALUE') DO CALL :memCalc %%A
set memAvail=%RETURN%
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic os get FreePhysicalMemory /VALUE') DO set memFree=%%A
set /A memFree=%memFree:~0,-1%/1024
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic pagefile get AllocatedBaseSize /VALUE') DO set virtAlloc=%%A
FOR /F "TOKENS=2 DELIMS==" %%A IN ('wmic os get FreeVirtualMemory /VALUE') DO set virtFree=%%A
set /A virtFree=%virtFree:~0,-1%/1024
echo Physical memory: %memInst% MB installed, %memAvail% MB available, %memFree% MB free
echo Virtual memory: %virtAlloc% MB allocated, %virtFree% MB free
endlocal
exit /b 0
:memCalc <value>
setlocal
SET value=%1
set /A data=%value:~0,-1%/104857
endlocal & set RETURN=%data%
exit /b 0
:memInstall <value>
SET SLO=%1
SET/A SLO=%SLO:~0,-1%/104857
SET/A SLO1=SLO1+SLO
exit /b 0
::functions and other stuff down here
:windows <value>
setlocal
set TESTK1=HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion
set TESTK2=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion
set TESTV=%~1
call :reg_read "%TESTK1%" "%TESTV%" || (
call :reg_read "%TESTK2%" "%TESTV%" || (set RETURN=)
)
set data=%RETURN%
endlocal & set RETURN=%data%
exit /b 0
:bios <value>
setlocal
set TESTK=HKLM\HARDWARE\DESCRIPTION\System\BIOS
set TESTV=%~1
call :reg_read "%TESTK%" "%TESTV%" || (set RETURN=Unkown)
echo %TESTV%: %RETURN%
endlocal
exit /b 0
:reg_read <key> <value>
setlocal
set key=%~1
set value=%~2
reg query "%key%" /v "%value%" 1>nul 2>&1 || (exit /b 1)
for /f "tokens=2,*" %%a in ('reg query "%key%" /v "%value%" ^| findstr /c:"%value%"') do (
set data=%%b
)
if "%data%"=="" (endlocal & exit /b 1)
endlocal & set RETURN=%data%
exit /b 0
-
View User Profile
-
View Posts
-
Send Message
ModeratorThe advanced minecraft error test is an old program and i'm not sure if it has any use now, plus it won't show an error inside minecraft itself, its more for minecraft nor loading at all.
Goto minecrafts video settings, and turn mipmaps to off.
if this doesn't work try toggling the VBO's setting, and post a dxdiag log
Dxdiag?
again, super new and pretty uneducated