like im doing a test for a future map... an i really don't know... i just need them randomly generated like people... i know people would need a subscript but idk how to
so you want them to be sprites.
im sure you know how to randomly place them (if not, then put rnd in the x,y of the sprites) are you saying you want to make then move around?
oh well that's harder something like making a box or area limit that he can go to first.
then making him move, just an x=x+1 for moving it and an until to stops it, so set four things like that, up down left and right, then make a random thing that chooses from the four like
a=rnd(4)
if a=1 then left
if a=2 then right
and so on
make a def for each direction, on those def make it move a random
amount of stuff, set a boundary so it doesn't do out of a certain range then put until loops to keep it from doing another action while the current is in action.
once its complete don't forget to reset the first rnd variable by putting a=rnd(4) at the end
use a for loop, ill give an example
lets say you want to set up 25 bananas randomly over the screen, do
ACLS
FOR I=0 TO 24
SPSET I,5
SPOFS I,RND(400),RND(230)
NEXT
is that what you mean?
ik im getting annoying but umm... how could i make them move away from each other?...
because I only have X,Y for all of the sprites spofs and idk how to define them
thats the hard part.. i know all this because i have been making this for an ai for my NPS's
i will be still testing though, ill see if i can come up with something. lol.