Thread: Stuck
View Single Post
  #5  
Old 01-30-2002, 08:21 AM
Faheria_GP2 Faheria_GP2 is offline
Banned
Faheria_GP2's Avatar
Join Date: Oct 2001
Posts: 1,177
Faheria_GP2 is on a distinguished road
Re: Re: Stuck

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?
Reply With Quote