The problem appears to be this:Here how it is, i changed a little only main conditions.
Code:
count = 1
While count > 1 && count < 10 && Random(0, 100) < 15
Code:
While count < 10 && Random(0, 100) < 15
Code:
count = 0
While count > 0 && count < 10 && Random(0, 100) < 15
Edit: Should note that even if the code is modified to
Code:
While count < 10 && Random(0, 100) < 15
Last edited: