Nexon CommunityTech Wiki
Advertisement

Nexon Game Manager ERROR CODE = -46 (15206, 0) occurs when the cyclilic redundancy check (CRC) of the installer file itself fails. This means the downloaded installer file is corrupt or there is an issue with the CRC process.

System error code[]

0 (0x0) - ERROR_SUCCESS

The operation completed successfully.

Example: Download cut short[]

The example below explains what occures when the download is cut short.

In the example below, the downloaded file is supposed to return a size value of -1761136653 but was -2147482910. NGM uses hexadecimal data displayed as decimal numeric fields, which can only hold a value from −2,147,483,648 to 2,147,483,647. To reach values Higher than 2,147,483,647, negatives are used of the max hexadecimal number (which is 4294967296).

  • 4294967296 -1761136653 = 2,533,830,642 bytes
  • 4294967296 -2147482910 = 2,147,484,385 bytes

The game installer was expected to be 2,533,830,642 bytes but returned as 2,147,484,385 bytes, meaning the download was interrupted before it could finish. This results in the CRC completing it's check prematurely (it reached the end of the file before it was expected) and returing a completed code "0".

Nexon Game Manager error log example from Thread: Direct Client Download Error -46 , corrupt file , etc.:

[06/21 23:01:57] Install Start
[06/21 23:01:57] User Temp Directory : C:\Users\ADMINI~1\AppData\Local\Temp
[06/21 23:01:57] Use CRC : false
[06/21 23:01:57] File Name : C:\Nexon\Clients\DragonNestSetupV154.exe
[06/21 23:01:57] Game Code : 33583117
[06/21 23:01:57] File information mismatch: 0, -2147482910, -1761136653
[06/21 23:01:57] ErrCode : 15000 - 206 - 0

Error-specific solutions[]

You must redownload the client file as the file you have is corrupt.

For links see Download installers directly

NGM log breakdown[]

For more information, see Nexon Game Manager error logs/interpreting

[06/21 23:01:57] Install Start
  • Start of the install process
[06/21 23:01:57] User Temp Directory : C:\Users\ADMINI~1\AppData\Local\Temp
  • The directory used to store the files being unpacked for the install
[06/21 23:01:57] Use CRC : false
  • No information available. Default is always false.
[06/21 23:01:57] File Name : C:\Nexon\Clients\DragonNestSetupV154.exe
  • The current filename and/or path being processed
[06/21 23:01:57] Game Code : 33583117
  • The Nexon Game Manager game code for the installer in use
[06/21 23:01:57] File information mismatch: 0, -2147482910, -1761136653
  • The returned error from the process.
  • 0 is assumed to be the file number
  • -2147482910 is the returned file size in numeric decimal
  • -1761136653 is the expected file size in numeric decimal
[06/21 23:01:57] ErrCode : 15000 - 206 - 0
  • The error code subtype is the first two numbers 15000 and 206 to make 15206.
  • This number currently has no meaning outside of identifying a subtype.
  • The second number is a Windows system error code returned by the process
Advertisement