• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

Help with new game with multiple user profiles

A

Anthony Diaco

Guest
Hi everyone. This is my first game with gamemaker. I have a lot of coding experience but no experience building games.

So I'm trying to build a game where an essential part is the ability for players to create a profile that will have a limited number of saved variables associated with it (current level, time played, etc.). Nothing crazy. This seems like a fairly common bit of functionality. Was wondering if there was a decent tutorial out there for it. Or if someone could just recommend the best approach to the data structures and what not. Like do I create a file with the profile names, and then a separate file with a ds_map for each name? Or should I be storing everything in one file? I just don't know how this is usually done...

thanks so much
 

NazGhuL

NazTaiL
There is thousand ways of doing this. You should first, on a separate project, try one and see if you like it. A simple way would be one ini.file by profile. Name them in a way that you could easily work with:

user_0.ini
user_1.ini
user_2.ini

and on each ini.file you have the key needed like name, savegame, etc...
Txt file could be great too.
I personnaly like using ds_map (with ds_map_secure_save)
 
Top