You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some additional information that may be relevant. I am using a program to launch NWN. Here is the VB.net snippet used...
Using run As New Process
run.StartInfo.FileName = "D:\Beamdog Library\00785\bin\win32\nwmain.exe"
run.StartInfo.Arguments = "-userDirectory """D:\Enhanced Edition Mods""""
run.StartInfo.UseShellExecute = True
run.StartInfo.CreateNoWindow = True
Try
run.Start()
Catch ex As Exception
' Probably user cancelled operation via UAC prompt
Return ex.HResult
End Try
If options.HasFlag(RunOptions.WaitForCompletion) Then
run.WaitForExit()
' This can help to avoid a process hanging on to file
If Not run.HasExited Then
run.WaitForExit(1000)
Try
run.Kill()
Catch ex As Exception
' Ignore - I think if it fails, a Kill was probably not required
End Try
End If
' Need this to deal with trying to get an Exit code when the program is still running
Try
exitCode = run.ExitCode
Catch ex As Exception
' Ignore - means the process has not finished so you can't get the exit code.
exitCode = RunExitCode.Not_Available
End Try
Else
exitCode = RunExitCode.Wait_Not_Set
End If
End Using
OS
Windows
Game version
88.8193.36-13
Describe the crash
Start any game and type ##PleaseCrash in the chat box.
Answering OK to the message about the crash closes the message, which is displayed again.
This means you need to use the Task Manager to close NWN, rather then clicking OK to close the game.
Custom content or overrides used
Customize Character Override Hak Extended Edition (CCOHEE)
The text was updated successfully, but these errors were encountered: