hi i'd like to ask something about multiply a sprite.
you see i have a sprite and i want to multiply it to ten sprites
in random places and to move all together from up to down.
i have tried with for next commands but only the last is moving.
see some of my code:
x=100
y=100
for n=1 to 10
sprite n,x,y,1
next n
sync
inc y,10
as you see i made the command to move sprites the problem is - i say again- that only the last is moving the other sprites are not moving.
i thing that the problem occures at the n varable i used.
in other words i just want to give the same properties to all sprites using a variable
i hope someone to help me thanks
THE AOOS