The Dink Network

Help me with the line

April 24th 2005, 03:42 PM
milder.gif
I am using this script but can someone help me with one line;

void main( void )
{
if (&story > 6)
{
return;
}
&vision = 1;
int &guy;
&guy = create_sprite(400, 250, 9, 373, 4);
freeze(&guy);
sp_speed(&guy, 1);
sp_timing(&guy, 33);
sp_base_walk(&guy, 270);
sp_script(&guy, "s1-brg2");
}

Can someone help me with this line;
&guy = create_sprite(400, 250, 9, 373, 4);

What are the numbers?
400
250
9
373
4

April 24th 2005, 03:45 PM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
It's create_sprite(x-coordinate, y-coordinate, brain, seq, frame);
April 24th 2005, 03:48 PM
milder.gif
what was frame again? I can't remember. I stopped for a while with developing.
April 24th 2005, 03:49 PM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
A sequence consists out of frames, like every frame of the sequence or animation. You define a graphics by its sequence and its frame where sequence is something like 438 and frame is 1,2,3,4..etc depending on the number of bitmaps in the sequence.
April 24th 2005, 03:50 PM
spike.gif
seq is when you press e

frame is when you press e and enter
April 24th 2005, 04:08 PM
milder.gif
Thank you guys. You helped me. Thank you very very much.