The Dink Network

Help again

January 29th 2006, 03:41 PM
duckdie.gif
Believe it or not, I don't come running to the board every time I need help. So the next line might seem a little ironic.

When you want to create a sprite that runs thru and dies in coding, what do you enter as the frame parameter?
January 29th 2006, 04:18 PM
knightg.gif
cypry
Peasant He/Him Romania
Chop your own wood, and it will warm you twice. 
You mean creating a sprite using create_sprite ?
January 29th 2006, 04:21 PM
duckdie.gif
Mmmhmm. Here's what I've done

int &explode = create_sprite(316, 274, 7, 167, 1);
January 29th 2006, 04:26 PM
knightg.gif
cypry
Peasant He/Him Romania
Chop your own wood, and it will warm you twice. 
I think you should add
sp_seq(&explode, 167);
right after the create_sprite() commmand
January 29th 2006, 04:33 PM
duckdie.gif
Thank you.