Error Generic Error in Expression: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
'''Error Generic Error in Expression'''  
'''Error Generic Error in Expression'''  


Generic Error in Expression ( providing operators with incorrect operand types )
This error occurs when they type of data an operator is expecting does not match.




Line 13: Line 13:
'''Example:'''
'''Example:'''


_myVar = [1,2,3] [[select]] 15
_myString = "The meaning of life is " + 42


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

Revision as of 02:04, 11 June 2006

Error Generic Error in Expression

This error occurs when they type of data an operator is expecting does not match.


Compatibility:

Version 1.96


Example:

_myString = "The meaning of life is " + 42