Error Zero Divisor

From Bohemia Interactive Community
Revision as of 18:26, 6 January 2021 by R3vo (talk | contribs) (page formatting)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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