d-soldier wrote:So is that something I can just change then? Should I find the "%03.2f" and change it to "%3s"?
the %03.2f does not exist, I was just giving you an example,
he means you must look on the High Score menu(it is on the create Actor event if you have not figured it out.) and change the Code near the bottom where it has somthing like sprintf(ADD, "%02d. %s %d", i, NAMES[i], SCORES[i]);
to: sprintf(ADD, "%02d. %3s %d", i, NAMES[i], SCORES[i]);