Reply to Re: Why didnt you say that :S
If you don't have an account, just leave the password field blank.
To make a sprite walk around the screen by itself, give it a brain of 16. This is the 'Smart People' brain... they will walk around, stop, look around, then walk again. If you want the sprite to just walk around all the time, give it a brain of 9. This is done by using this command in that sprite's script:
sp_brain(&current_sprite, 16);
A sprite will not move unless it has a speed value. So give it one:
sp_speed(&current_sprite, 1);
Also, you need the base walk of the sprite, which as theprophet alluded to, is the sequence numbers of the sprite. So, if you're going to make an old man, who has 231, 233, 237, and 239 as the walk sequences, the base walk would be 230.
sp_base_walk(&current_sprite, 230);
sp_brain(&current_sprite, 16);
A sprite will not move unless it has a speed value. So give it one:
sp_speed(&current_sprite, 1);
Also, you need the base walk of the sprite, which as theprophet alluded to, is the sequence numbers of the sprite. So, if you're going to make an old man, who has 231, 233, 237, and 239 as the walk sequences, the base walk would be 230.
sp_base_walk(&current_sprite, 230);