Basically I need a way to create a simple text file for a quiz game project, that would hold player names as well as scores, and would both read info from it as well as write to it. Basically the idea is to edit the text file with player names prior to loading the game, and then once the game loads it reads the text file and arranges the "players" in order to be selected. Then, as that player answers questions under their name, they earn points, which are written back to the text file with their info (or another file).
Also, I need to figure out an easy way to load multiple choice questions divided by category and difficulty so I can generate a random question each time someone goes to answer one (and if possible setup a way to not generate the same question twice)