Error Zero Divisor

From Bohemia Interactive Community
Revision as of 19:59, 7 January 2007 by Hoz (talk | contribs) (removed categorization)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This error occurs when the variable you are trying to divide has a value of zero, or when you attempt to divide a variable by 0.

It also occurs when you attempt to access an element of an array which does not exist.


Compatibility:

Version 1.96


Example:

_myVar = 0 / 15

_myVar = 15 / 0

_myVar = [1,2,3] select 15