Reply to Re: stupid crappy crappy thing thats crap.
If you don't have an account, just leave the password field blank.
September 18th 2004, 08:23 AM

MiloBones


Blue stars can be done with a spawn("mag_star");
A few notes on the create_sprite command. It's like this:
&junk = create_sprite( x location, y location, brain, sequence, frame);
Five parameters. And it returns the number of the new sprite, so you could do, say, sp_dir(&junk, 2); or whatever, if you set &junk equal to the create_sprite command, like above.
And a note on brain 12: it makes things shrink or grow to sp_brain_parm, then die. An example:
sp_brain_parm(¤t_sprite, 110);
sp_brain(¤t_sprite, 12);
The sprite will now grow to size 110, then die.
That should help, some.
A few notes on the create_sprite command. It's like this:
&junk = create_sprite( x location, y location, brain, sequence, frame);
Five parameters. And it returns the number of the new sprite, so you could do, say, sp_dir(&junk, 2); or whatever, if you set &junk equal to the create_sprite command, like above.
And a note on brain 12: it makes things shrink or grow to sp_brain_parm, then die. An example:
sp_brain_parm(¤t_sprite, 110);
sp_brain(¤t_sprite, 12);
The sprite will now grow to size 110, then die.
That should help, some.