I know the UserInfo class and it's funktions. But that's not what I need in this case.
What I need is something like a UserInfo object that is always avaliable and always the same for each user.
Something like a file where the relevant data of every player is saved.
I want my code to improve itslevel and thats much more effective when many people play the game and so help to improve the code.
So a 'normal' UserInfo will not help me in this case.
Is there anything else what could help me here? (Except something like a JDBC - Database connection)
For local systems and networks, you can read and write whatever files you want. However, on the site, you cannot write to any files for security reasons; the only way to store info there is by use of what storage is available through the use of the UserInfo class.
Since your game does not currently use highscores, you could store your information in the top users. For example, your code would use the getTopUsers(how many ints you need divided by 10); and store the information in those. Because you are not messing with the users, the order will stay the same, and thus the information will not be jumbled.
MatheMagician, there is no way for him to write to those UserInfo blocks that belong to other users. The program will have to write each users own situation in the space that is provided for that user.
Ok so there is no way to do this.
I'll try to use the adaptive code somehow else.
Thanks guys.