Error Zero Divisor: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
(page formatting)
 
(13 intermediate revisions by 7 users not shown)
Line 1: Line 1:
'''Error Zero Divisor'''
=== Description ===
 
This error occurs when you attempt to divide a variable by 0.
This error simply means that the variable you are dividing contains zero or that you try to select a not existing element of an array.
It also occurs when you attempt to access an element of an array which does not exist.
 
 
 
'''Compatibility:'''


=== Compatibility ===
Version '''1.96'''
Version '''1.96'''


=== Example ===
_myVar = 15 / 0
_myVar = [1,2,3] [[select]] 15


'''Example:'''
_myVar = [1,2,3] [[select]] 15
[[Category:Editing: Flashpoint]]
[[Category:Troubleshooting]]
[[Category:Common Scripting Errors]]
[[Category:Common Scripting Errors]]

Latest revision as of 18:26, 6 January 2021

Description

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