Infinite rand?

Blitz3D Forums/Blitz3D Beginners Area/Infinite rand?

Polarix(Posted 2017) [#1]
I can't find a way to make it so that every time a condition is met then it makes a rand. Am i missing something? Thanks


Matty(Posted 2017) [#2]
global myrandvar%
if condition then
myrandvar = rand(1,100)
endif

;what's so hard about that?


Polarix(Posted 2017) [#3]
Thank you!

If you think something is complicated, you are probably over complicating it.