2 Replies
i > rngAmount
in your for loop is guaranteed to be false immediately, because 0
can't be larger than any of the random numbers you are generating
As such, the for loop never runs
You have the same issue in your other 2 for loops
You almost certainly wanted <
instead of >
ahhh
wait
god i always do that
alright gimme one sec
yeah it works now.
well thanks for pointing that out, dont know how i missed that