Quote:
Originally posted by Python523
A few things:
time.tag+=1;
should be this.tag since the showimg is read as this.tag)
secondly dont do while timeout
if (created) {timeout=.05;}
if (timeout) {timeout=.05;}
works fine
Third:
x = random(24,41);
that could make a number like 24.4322343545234072307
do
x= int(random(24,41));
that gets rid of the following decimals
|
what's wrong with an x,y coordinate being decimal?