The Dink Network

how 2 move group of sprites at same time

November 16th 2005, 06:54 PM
anon.gif
RANKN67
Ghost They/Them
 
how do i make a group of created sprites move all at the same time?
November 16th 2005, 08:12 PM
custom_carrie2004.gif
carrie2004
Peasant She/Her Canada
*chomp* 
Actually, I lied before.You can do it.But it's
impossible to explain.Either that or I'm just mean!(edit - or ignorant!)

November 16th 2005, 08:32 PM
custom_king.png
redink1
King He/Him United States bloop
A mother ducking wizard 
You'd have to do something like this:

move(&sprite1, 2, 300, 1);
move(&sprite2, 2, 300, 1);
move(&sprite3, 2, 300, 1);
move(&sprite4, 2, 300, 1);
move_stop(&sprite5, 2, 300, 1);

The trick is to use 'move' for all movements except the last, or longest, move.
November 17th 2005, 07:47 AM
anon.gif
RANKN67
Ghost They/Them
 
wow! it worked, ur a smart guy redink!