When an error makes no sense: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(This issue comes up a lot for me, hopefully it will help others who may be frustrated too)
 
No edit summary
 
Line 1: Line 1:
Sometimes, the displayed error will not appear to be correct. The error parser will point you to a line of code which is correct, yet it will tell you that some strange error exists at that point.
Sometimes, the displayed error will not appear to be correct. The error parser will point you to a line of code which is correct, yet it will tell you that some strange error exists at that point.


In this case, the problem usually lies '''beneath''' that point in the code. Usually the source of the error is actually a '''missing parenthesis, bracket, curly brace, etc.'''
In this case, the problem usually lies '''beneath''' that point in the code. Usually the source of the error is actually a '''missing parenthesis, bracket, curly brace, etc.''' Usually the error message says that it encountered a string where it expected code.




'''Compatibility:'''
'''Compatibility:'''


This only applies to .sqf syntax scripts, not .sqf scripts.
This only applies to .sqf syntax scripts, not .sqs scripts.




Line 15: Line 15:
_str = format["mystring";
_str = format["mystring";
};</pre>
};</pre>
In this example, the error will be shown to originate just to the left of the word "do". However, the error is actually caused by a line in the code beneath the do statement. (Such an error would be difficult to spot if it were many more lines down in the code)
In this example, the error will be shown to originate just to the left of the word "do". However, the error is actually caused by a line in the code beneath the do statement. (Such an error would be difficult to spot if it were many more lines down in the code.)


[[Category:Common Scripting Errors]]
[[Category:Common Scripting Errors]]

Latest revision as of 09:44, 18 August 2008

Sometimes, the displayed error will not appear to be correct. The error parser will point you to a line of code which is correct, yet it will tell you that some strange error exists at that point.

In this case, the problem usually lies beneath that point in the code. Usually the source of the error is actually a missing parenthesis, bracket, curly brace, etc. Usually the error message says that it encountered a string where it expected code.


Compatibility:

This only applies to .sqf syntax scripts, not .sqs scripts.


Example:

for "_i" from 0 to 1 do
{
	_str = format["mystring";
};

In this example, the error will be shown to originate just to the left of the word "do". However, the error is actually caused by a line in the code beneath the do statement. (Such an error would be difficult to spot if it were many more lines down in the code.)