I'm having a bit of a conundrum here. I am attempting to make an ini file and an event that stores previous values that it collects and lists them in chronological order. Kind of like a high score list but instead of high scores I want to make it previous attempts.
So far I have an ini set up as such:
[previouslist]
set1=#
set2=#
set3=#
What I want it to do is as soon as soon as a new value is obtained it is stored in the ini as set1. If there is already a set1 value there, however, I want to move that set1 value into the set2 slot to make room for the new set1 value. The same for set2 to set3.
For the life of me I can not find a way to do this. Does anyone have an experience trying something like this?