02-06-2010, 04:16 AM
I'm afraid there isn't.
However you can try this. Make a new empty project and create an event with the following script event command:
Run the game and activate the event. Close it. You'll see a text file with the list. Change the MAX value to meet your needs.
However you can try this. Make a new empty project and create an event with the following script event command:
Code:
MAX=200
outfile = File.new("list.txt", "a")
list=Array.new(MAX-1)
list.each_index { |index|
list[index]=index+1
}
outfile.write sprintf ("%p",list)
outfile.write "\n"
outfile.close
Run the game and activate the event. Close it. You'll see a text file with the list. Change the MAX value to meet your needs.