The Dink Network

pls explain a script part to me!

October 27th 2003, 10:47 AM
duck.gif
I wonder what this means, i'm sure it makes sence, but hey, i don't know it yet, so.....
&dinklogo = create_sprite(426,344, 0, 453, 1);
sp_que(&dinklogo, -800);
sp_noclip(&dinklogo, 1);

Thanks!
October 27th 2003, 10:53 AM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
This part places the big Dink Smallwood logo sprite on screen. The first line creates a sprite at the given x and y location with brain 0 and seq 453, frame 1. Then it uses &dinklogo to set the depth dot of the Dink Smallwood logo sprite to -800, so very back and thus other sprites will move over it and sp_noclip means the sprite will not be clipped in the normal game window.
October 27th 2003, 11:00 AM
duck.gif
thanks, appreciate it