I'm still new on C++ can anyone help me, I need the scores arrange themselves. For example I am the third player on the game and I rank the highscores, I want to be place at the first line and is there a way making it tabulated? Can anyone help me.
Create a class for a score if you haven't already and define operator< so that it always places you first, like you wanted.
Then you can use std::sort on your vector of scores and pick the top x from the vector.
As for making it tabulated: use tabs.