Afr0
Well-Known Member
On second thought, I'm not sure you need to install Bass.Net, since the required DLL is already distributed with the client. Please do as I said earlier and install the font, and see if that helps you.
On another note, the servers will be going online again tonight, and should never crash again!
I was toying around with the idea of having applications sending me exception information, and discovered a way to handle unhandled exceptions:
This was exactly what I needed for the servers! Now they will never crash, but log any and all unhandled exceptions so that I can attempt to fix them locally and restart the (hopefully) fixed servers on patchday! Perfect!
On another note, the servers will be going online again tonight, and should never crash again!
I was toying around with the idea of having applications sending me exception information, and discovered a way to handle unhandled exceptions:
Code:
Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.Automatic);
This was exactly what I needed for the servers! Now they will never crash, but log any and all unhandled exceptions so that I can attempt to fix them locally and restart the (hopefully) fixed servers on patchday! Perfect!