ID:267442
 
How can I get rid of the runtime errors or make them so they wont display?
Fix the errors. No errors = no error messages. (Duh.)
In response to Crispy
But there are no errors but when ever I log in it comes up with a huge list but everything still works.
In response to RPG Pro
RPG Pro wrote:
But there are no errors but when ever I log in it comes up with a huge list but everything still works.

Runtime errors as STILL errors, only difference is.. the compiler doesn't catch them and doesn't care.

Just think of them as Non-Compiler Errors, and treat them like any other error. Only thing is.. its a wee bit harder to track those suckers down. Cause besides a runtime proc maybe it doesn't give you much to go on where the problem is in your code. Also learn how to read a runtime error can help ya out.

Error: this tells you the type of runtime error your getting.
usr: this was the value of USR when the error occured
src: this was the value of SRC when the error occured
Then it normally gives you area, what was Clicked etc below this point. Most of my runtime errors noramlly deal with procs.

LJR
In response to LordJR
Remember to turn on debug mode (Build->Preferences) so you get filenames and line numbers for the crash messages. Helps a lot.