Num3 = 0
Num = Num2 / Num3
and believe it or not even if you buried it under an if statement it would still crash:
Num3 = 0
if Num3 > 0
Num = Num2 / Num3
endif
So I had to do things like this:
Num = Num2 / Num3 + 0.001
So is this division by zero issue still a problem in Skyrim scripting or is there some built in protection (like in modern calculators) from this old OLD * programming issue.
* see here: http://en.wikipedia.org/wiki/Division_by_zero


