24.02.2014, 22:30
I had to read that a couple times to see if I understand. What you want is the option to have 2 characters per account and the ability to switch between those 2 characters on login, correct?
I would start with a dialog after login that says:
Then, using a file saver (like y_ini), on dialog response, if the the file exists load the file from Folder "A"(too lazy to script)
If the file doesn't exist, save it to a new file in Folder "A", copy the same process for Character 2, except save it to a different folder, like Folder "B." This way you can have 2 different files per account.
Does that make any sense?
I would start with a dialog after login that says:
pawn Код:
ShowPlayerDialog(playerid, DIALOG_SAVES, DIALOG_STYLE_MSGBOX, "Account Saved Characters", "Select which Character you'd like to play as this session:", "Saved Character 1", "Saved Character 2");
If the file doesn't exist, save it to a new file in Folder "A", copy the same process for Character 2, except save it to a different folder, like Folder "B." This way you can have 2 different files per account.
Does that make any sense?