Error Zero Divisor: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
 
(you dont get error when divide 0 by something)
(16 intermediate revisions by 5 users not shown)
Line 1: Line 1:
This error occurs when you attempt to divide a variable by 0.


The '''Error Zero Divisor''' is simply the value that is dividing contains zero.  
It also occurs when you attempt to access an element of an array which does not exist.




[[Category:Editing: Flashpoint]]
'''Compatibility:'''
 
Version '''1.96'''
 
 
 
'''Example:'''
 
_myVar = 15 / 0
 
_myVar = [1,2,3] [[select]] 15
 
 
 
 
[[category:Operation Flashpoint: Editing|ERRORZERO]]
[[Category:Common Scripting Errors]]

Revision as of 13:18, 21 July 2019

This error occurs 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 = 15 / 0

_myVar = [1,2,3] select 15