The Dink Network

Reply to Re: how 2 move group of sprites at same time

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
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.