I'm assuming scripters have a hard time figuring out what some errors mean, when they occur in a script. Sometimes these error provide little to no debugging info. Here are some scenarios in which specific errors will occur.
Unknown identifier '' at line x
Known occurrences:
- Creating a dynamic array of an invalid type(Ex. "Array of TPont" instead of "Array of TPoint")
Internal error (20) at line
Known occurrences:
- Attempting to use the equality operator as an assignment operator(Ex. 'myInt = 10' instead of 'myInt := 10')
What causes these errors for you?



Reply With Quote






