[Solved]Sudden crashes

Forum for alternative clients, mods & discussions on the same.

Moderator: Phades

[Solved]Sudden crashes

Postby Gallade » Tue Jul 09, 2013 12:01 am

So...I recently restored my PC's system settings for a BSOD problem I often had, and suddenly both with Ender's Client and the standard one, whenever I log in and select my character, the game crashes after few seconds.

I have tried all of the following:
-Switching to Ender 32-bit and back
-Updating, then uninstalling and reinstalling java
-Checking my Firewalls and Firefox security settings to make sure HnH was in the exceptions
-Resetting my graphics card (It's an ATI Radeon 1XXX) to factory settings
-Running CCleaner

I just don't know where to bang my head next.
Last edited by borka on Tue Jul 09, 2013 8:10 pm, edited 2 times in total.
Reason: edited title [Solved] and locked
"Our village is so big, you can hop on a wagon at the idol and ride it all day in the same direction, and you'll still be on our claim"
"Dang, are your wagons that slow?"


If I wanted to get a load of bull from you I'd have brought my cows for you to impregnate!
User avatar
Gallade
 
Posts: 143
Joined: Tue Feb 14, 2012 6:20 pm

Re: Sudden crashes

Postby olgeigracexD » Tue Jul 09, 2013 1:26 am

Post error log. Without it we can only guess.
User avatar
olgeigracexD
 
Posts: 76
Joined: Wed Sep 08, 2010 7:40 pm

Re: Sudden crashes

Postby Gallade » Tue Jul 09, 2013 9:03 am

c) start ender and save all errors to a logfile you can post here (Console window stays open, showing path to the current log):


I edited run.bat as shown, but no file was created in the Logs folder. Unless you mean the "hs_err_pid" files?

EDIT: Darn, didn't see the scrollbar and only copied half of the code.

Here's one of the error dumps...:
Code: Select all
#
# A fatal error has been detected by the Java Runtime Environment:
#
#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006a664d5c, pid=3400, tid=1436
#
# JRE version: 7.0_25-b17
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.25-b01 mixed mode windows-amd64 compressed oops)
# Problematic frame:
# V  [jvm.dll+0x354d5c]
#
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# An error report file with more information is saved as:
# C:\Users\Alex\Desktop\HnH_Ender_x64\hs_err_pid3400.log
#
# If you would like to submit a bug report, please visit:
#   http://bugreport.sun.com/bugreport/crash.jsp
#


This is the complete dump.
"Our village is so big, you can hop on a wagon at the idol and ride it all day in the same direction, and you'll still be on our claim"
"Dang, are your wagons that slow?"


If I wanted to get a load of bull from you I'd have brought my cows for you to impregnate!
User avatar
Gallade
 
Posts: 143
Joined: Tue Feb 14, 2012 6:20 pm

Re: Sudden crashes

Postby olgeigracexD » Tue Jul 09, 2013 1:17 pm

hs_err_pid is created on fatal java error. Try different versions of gpu drivers and java (1.6)
User avatar
olgeigracexD
 
Posts: 76
Joined: Wed Sep 08, 2010 7:40 pm

Re: Sudden crashes

Postby borka » Tue Jul 09, 2013 4:47 pm

Alex post run.bat and pathes of installed Java(s)

you got a mess somehow

C:\jdk7u2_64p\jdk7u25\

C:\Program Files (x86)\Java\jre7\bin

?!? Why JDK ?!?

the dump only shows that the VM crashed while Parallel Garbage Collection - so no hints in there...
User avatar
borka
 
Posts: 9965
Joined: Thu Feb 03, 2011 7:47 pm
Location: World of Sprucecap

Re: Sudden crashes

Postby Gallade » Tue Jul 09, 2013 5:25 pm

Oh, of course, sorry.

Here's my run.bat:
Code: Select all
.\updater\HnH_updater.exe
"C:\Program Files (x86)\Java\jre7\bin\java.exe" -Djava.library.path="C:\games\HnH\" -Xms256m -Xmx512m -jar

haven.jar moltke.seatribe.se

@ECHO OFF

SET dateTemp=%date%
SET dateTemp=%dateTemp:/=-%
SET dateTemp=%dateTemp: =%

SET timeTemp=%time%
SET timeTemp=%timeTemp::=.%
SET timeTemp=%timeTemp:,=.%
SET timeTemp=%timeTemp: =%

IF NOT EXIST logs MKDIR logs
SET logPath="logs\%dateTemp% %timeTemp%.log"

ECHO Logfile: %logPath%
java -Xms256m -Xmx512m -jar haven.jar moltke.seatribe.se -r ./res > %logPath% 2>&1

call :getFilesize %logPath%
IF %filesize% == 0 DEL %logPath%

:getFilesize
set filesize=%~z1
exit /b


And...I don't know what this jdk is. I don't even have such a folder...

Also, I have jre7 and jre6 installed in the path I wrote in run.bat, I tried with either but there is no change.

BTW, I can now add these to the attempted solutions:
-Changing my graphics drivers both to factory presets and maximum performance
-Manually taking apart, cleaning and reassembling the RAM
-Running DriverTuner to update everything.

At this pace I might as well get a new PC with a NVIDIA card...last time I use an ATI, I swear.
"Our village is so big, you can hop on a wagon at the idol and ride it all day in the same direction, and you'll still be on our claim"
"Dang, are your wagons that slow?"


If I wanted to get a load of bull from you I'd have brought my cows for you to impregnate!
User avatar
Gallade
 
Posts: 143
Joined: Tue Feb 14, 2012 6:20 pm

Re: Sudden crashes

Postby olgeigracexD » Tue Jul 09, 2013 6:05 pm

Delete everything in run.bat, and paste this

Code: Select all
.\updater\HnH_updater.exe
"C:\Program Files (x86)\Java\jre7\bin\java.exe" -Xms256m -Xmx512m -jar haven.jar moltke.seatribe.se
pause


If it won't help, delete it again an try
Code: Select all
.\updater\HnH_updater.exe
"C:\Program Files\Java\jre7\bin\java.exe" -Xms256m -Xmx512m -jar haven.jar moltke.seatribe.se
pause
User avatar
olgeigracexD
 
Posts: 76
Joined: Wed Sep 08, 2010 7:40 pm

Re: Sudden crashes

Postby Gallade » Tue Jul 09, 2013 6:27 pm

olgeigracexD wrote:Delete everything in run.bat, and paste this

Code: Select all
.\updater\HnH_updater.exe
"C:\Program Files (x86)\Java\jre7\bin\java.exe" -Xms256m -Xmx512m -jar haven.jar moltke.seatribe.se
pause


If it won't help, delete it again an try
Code: Select all
.\updater\HnH_updater.exe
"C:\Program Files\Java\jre7\bin\java.exe" -Xms256m -Xmx512m -jar haven.jar moltke.seatribe.se
pause


Tried both of them. The second one doesn't work (Because my Java folder isn't there, duh!), and with the first one it goes pretty much as usual, smooth playing, then crash.

Oh, maybe I found something. When I just tried to reinstall Java, I got an error saying "java_sp.dll is corrupt". Could that be it?
Last edited by Gallade on Tue Jul 09, 2013 6:47 pm, edited 1 time in total.
"Our village is so big, you can hop on a wagon at the idol and ride it all day in the same direction, and you'll still be on our claim"
"Dang, are your wagons that slow?"


If I wanted to get a load of bull from you I'd have brought my cows for you to impregnate!
User avatar
Gallade
 
Posts: 143
Joined: Tue Feb 14, 2012 6:20 pm

Re: Sudden crashes

Postby borka » Tue Jul 09, 2013 6:46 pm

the first with Ender_x64 or Ender_x32 ?!?

Because it seems you have only 32 Bit Java7 so you should go with Ender_x32 and try this run.bat
Code: Select all
.\updater\HnH_updater.exe
"C:\Program Files (x86)\Java\jre7\bin\javaw.exe" -Xms256m -Xmx512m -jar haven.jar moltke.seatribe.se
pause




... or install the Java7 64 Bit JRE (c:\Program Files\Java\jre7\bin\java.exe)
User avatar
borka
 
Posts: 9965
Joined: Thu Feb 03, 2011 7:47 pm
Location: World of Sprucecap

Re: Sudden crashes

Postby Gallade » Tue Jul 09, 2013 6:51 pm

borka wrote:the first with Ender_x64 or Ender_x32 ?!?

Because it seems you have only 32 Bit Java7 so you should go with Ender_x32 and try this run.bat
Code: Select all
.\updater\HnH_updater.exe
"C:\Program Files (x86)\Java\jre7\bin\javaw.exe" -Xms256m -Xmx512m -jar haven.jar moltke.seatribe.se
pause




... or install the Java7 64 Bit JRE (c:\Program Files\Java\jre7\bin\java.exe)


Ok, I'll try either options and see if it plays out differently.
"Our village is so big, you can hop on a wagon at the idol and ride it all day in the same direction, and you'll still be on our claim"
"Dang, are your wagons that slow?"


If I wanted to get a load of bull from you I'd have brought my cows for you to impregnate!
User avatar
Gallade
 
Posts: 143
Joined: Tue Feb 14, 2012 6:20 pm

Next

Return to The Wizards' Tower

Who is online

Users browsing this forum: Ahrefs [Bot], Claude [Bot] and 0 guests