open to read [file],filename$
read string [file],strVariable$
close file [file]
[file] is a value 1 to 32
filename$ is the file you want to lead from
strVariable$ is what is read from the file
a string command will read each line from an ascii file with upto 255 character per line (else you'll overflow the string data)
you can then take these values and put them into an array like so
dim a(256)
for x = 1 to len(strVariable$)
a(x) = val( chr$( asc( right$( strVariable$,x ) ) ) )
next x
i know this looks a little convoluted, but all this does is makes a string position from the right most number (so say you have 8 numbers '12345' it'll make the string from the right so '5' ''45' '345' etc...) it'll then convert the first number of this string into an ascii version ... and then convert it back into its string character version ... and finally it'll turn that string number into a value number
(all len does is grab the number of characters in the string)
Tsu'va Oni Ni Jyuuko Fiori Sei Tau!
One block follows the suit ... the whole suit of blocks is the path ... what have you found?