im trying to make text appear in a random location and im trying to do it like this:
b=randomize
...
repeat
locate b,b
print (some text, this isnt what it said)
wait (i forget)
pls help
RND() is the random function.
RANDOMIZE is the random seed comand. (you won't need this, really)
The way you are doing it will have the x and y of the text the same. Try
X=RND(whatever the width of the console is minus the length of your text)
Y=RND(whatever the height of the console is)
LOCATE X,Y
PRINT "text"
pc chicken i just tried that but when the text shows up it just pops up in one spot over and over again. i want it to pop up multiple times in different locations each time.