-
ironwoman wrote on 2014-08-11 00:25
Making the thread about this, because people don't seem to look at Ferghus Repair Shop here.
The NexonGuard will download bunch of stuff, and when finished, the game won't start, without any sort of error message.
Client will stop working while NexonGuard is downloading, without any warning or error message.
Anyone experience anything similar, or have a solution?
Edit: Now after some downloading, it keeps showing me 0x00000102 error and that I have to get NGGate.bin file bullshit. That doesn't fix anything either.
Edit 2: I just replaced the NexonGuard folder with a new NexonGuard folder from the Mabinogi site. Now NexonGuard doesn't even start.
Edit 3: One useful info for this might be that when I try to unzip the folders or files to Mabi folder, error 0x80004005 will show up. I can't get the .bin files to properly get downloaded.
-
Osayidan wrote on 2014-08-11 00:35
Are you playing through steam? If so try to check game files from the steam interface. Fixes everything for me.
-
ironwoman wrote on 2014-08-11 01:59
Steam doesn't allow me to access Mabi where I am right now, so that won't work until I come back to the states.
-
Osayidan wrote on 2014-08-12 00:06
Only thing I can suggest without steam is to delete the nexonguard folder (maybe back it up first) and see if it properly redownloads it. Similar concept to when hackshield used to fuck up and the usual fix was doing the same.
-
Taycat wrote on 2014-08-12 01:23
if you're using the game through the nexon folder, go and update nexonguard manually in it's folder
-
ironwoman wrote on 2014-08-12 01:30
When I delete, it just repeats the process of redownloading.
I'd assume it's something wrong with the NGPatcher, since I see the NGPatcher.bin and a NGPatcher.bin.n, which I'm pretty sure isn't supposed to be there.
Or maybe the upate file, not really sure.
Edit:
Quote from Taycat;1239292:
if you're using the game through the nexon folder, go and update nexonguard manually in it's folder
How would I go about this? I see a file called update, but I don't know how to approach it or what I use to update it.
-
ironwoman wrote on 2014-08-13 05:27
Bump, now I'm getting the 0x000001f4 error.
God dammit Nexon, why do you make the game so hard to play?
-
Rydian wrote on 2014-08-13 06:15
Copy all this text, save it as .vbs, put it in your mabi folder and run it.
[SPOILER="Code"][code]'----------------------------------------------------------------------
'
' HSUpdate.vbs - HackShield Update Helper
'
' Copyright (c) 2014 yiting2002(at)hotmail(dot)com
' This file is distributed with the CrackShield
'
'----------------------------------------------------------------------
Option Explicit
On Error Resume Next
Dim iRet
Dim oShell : Set oShell = CreateObject("WScript.Shell")
Dim oFSO : Set oFSO = CreateObject("Scripting.FileSystemObject")
Dim strTestRegName : strTestRegName = "HKLM\SOFTWARE\__administrative_privilege_testing__"
''Check administrative privileges
oShell.RegWrite strTestRegName, 1, "REG_DWORD"
If Err Then
If CInt(oShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\CurrentVersion")) >= 6 Then
If CInt(oShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\EnableLUA")) = 1 Then
''Prompt UAC elevation
Dim oUAC : Set oUAC = CreateObject("Shell.Application")
oUAC.ShellExecute WScript.FullName, WScript.ScriptFullName, "", "runas", 1
WScript.Quit(0)
End If
End If
ErrPrompt "Administrative privilege is required."
End If
oShell.RegDelete strTestRegName
''Change working directory
Dim strRootDir : strRootDir = oFSO.GetParentFolderName(WScript.ScriptFullName) & "\HShield"
oShell.CurrentDirectory = strRootDir
If Err Then ErrPrompt "HackShield folder dosen't exist."
''Setup files path
Dim strHsCheckExe : strHsCheckExe = strRootDir & "\EhSvc.dll"
Dim strHsCheckLog : strHsCheckLog = strRootDir & "\HSUpChk.log"
Dim strHsUpdateExe : strHsUpdateExe = strRootDir & "\HSUpdate.exe"
Dim strHsUpdateLog : strHsUpdateLog = strRootDir & "\supdate.log"
Dim strHsAutoupExe : strHsAutoupExe = strRootDir & "\Update\autoup.exe"
Dim strHsAutoupLog : strHsAutoupLog = strRootDir & "\Update\supdate.log"
''Run update program
iRet = oShell.Run("""" & strHsUpdateExe & """", 1, True)
If Err Then ErrPrompt "Cannot execute update program."
If iRet <> 0 Then ErrPrompt "Error occurred when downloading files. (" & iRet & ")"
If Not oFSO.FileExists(strHsAutoupExe) Then ErrPrompt "Error occurred when downloading files."
''Check file in use, avoid reboot prompt
If oFSO.FileExists(strHsCheckExe) Then
oFSO.DeleteFile strHsCheckExe, True
If Err Then ErrPrompt "HackShield file is in use."
End If
''Run upgrade program
oShell.RegWrite "HKCU\Software\Ahnlab\Autoup\TemporarySettings\AlwaysShowRebootMsg", 0, "REG_DWORD"
iRet = oShell.Run("""" & strHsAutoupExe & """ /ASRYL", 1, True)
If Err Then ErrPrompt "Cannot execute upgrade program."
If iRet <> 0 Then ErrPrompt "Error occurred when replacing files. (" & iRet & ")"
''Clean up registry and log files
oShell.RegDelete "HKCU\Software\Ahnlab\Autoup\TemporarySettings\"
oShell.RegDelete "HKCU\Software\Ahnlab\Autoup\"
oFSO.DeleteFile strHsCheckLog, True
oFSO.DeleteFile strHsUpdateLog, True
oFSO.DeleteFile strHsAutoupLog, True
''Prompt success message
MsgBox "Update successful.", 64, "HackShield Update Helper"
WScript.Quit(0)
Sub ErrPrompt(strMessage)
MsgBox strMessage, 16, "HackShield Update Helper"
WScript.Quit(-1)
End Sub
[/code]
[/SPOILER]
If there's no file association set for it, you should be able to run it from the command prompt.
-
ironwoman wrote on 2014-08-13 09:46
Did it as told, same thing happens.
To clarify, this is not a hackshield error apparently. This screenshot should give you more insight.
[Image: http://oi57.tinypic.com/11ifte0.jpg]
-
Rydian wrote on 2014-08-13 10:48
... I can't even find a record of that error code.
Make a new user account on your computer, log out (do not "switch user", actually "log off") and then log into the new one, can that one run mabi?
-
ironwoman wrote on 2014-08-13 11:24
Tried it, and nope.
I don't get it, the error code doesn't even seem to be listed by Nexon.
-
ironwoman wrote on 2014-08-14 06:31
Bump, just uninstalled Mabi, removed the folder itself, then installed again.
Now when the launcher is trying to patch, it will just go to 27% then just back and repeat.
-
ironwoman wrote on 2014-08-14 06:31
Bump, just uninstalled Mabi, removed the folder itself, then installed again.
Now when the launcher is trying to patch, it will just go to 27% then just back and repeat.
-
Rydian wrote on 2014-08-14 07:16
Open version.dat with a hex editor, what does it say?
And which package files exist so far in that install?
-
Rydian wrote on 2014-08-14 07:16
Open version.dat with a hex editor, what does it say?
And which package files exist so far in that install?