ID:138439
 
A feature for the editor wold be line nr. for when you
can't find where the error is!
A feature for the editor wold be line nr. for when you
can't find where the error is!

Actually, you can already get this info, but there's a trick to it. Put this line in one of your files:

#define DEBUG 1

...and then when a proc crashes, you'll see the .dm file name and the line number.

Then, to find that line, just open the indicated file and type ctrl-G to enter the line number.

Here's the reason you don't get this debugging information by default: it makes your .dmb file larger and (I suspect) slower. So it's a good idea to comment out this debug line before you open a world to the public.

Hope that helps!