Nitro187
Mine's pretty straight forward.
For yours, I would list it as:
1 1345 Matt Car 56 Green
2 2345 Chris Truck 93 Red
3 23255 Laura Train 15 Blue
4 92234 Ashley Bike 134 Yellow
5 7346 Sam Plane 99 Purple
Note the score first.
Then I include a 6th element in the array which is the new one, so for example:
6 1000000 AnD4D Plane 10 Green
Then I run the data sort command, which puts them into ascending order based on the first element in the array:
1 1345 Matt Car 56 Green
2 2345 Chris Truck 93 Red
3 7346 Sam Plane 99 Purple
4 23255 Laura Train 15 Blue
5 92234 Ashley Bike 134 Yellow
6 1000000 AnD4D Plane 10 Green
Sadly in the opposite order I want them, but then I delete the top array, and just load the data into the text file in the order I want them displayed.
That make sense? I know you already have your method, but there's no harm in sharing in case anyone else comes along to this thread.