09.01.2016, 11:26
(
Последний раз редактировалось Hargrave; 09.01.2016 в 18:39.
Причина: SOLVED
)
SOLVED
ShowPlayerDialog(playerid, DIALOG_GENDER, DIALOG_STYLE_MSGBOX, "Registration", "Please choose the gender of your character", "Male", "Female"); } case DIALOG_GENDER: { if(!response) Kick(playerid); if(response) { pData[playerid][Gender] = 0; ShowPlayerDialog(playerid, DIALOG_ORIGIN, DIALOG_STYLE_INPUT, "Registration", "What is your character's origin? (IC)\n\tPlease type it below:", "Continue", "Leave"); } else { pData[playerid][Gender] = 1; ShowPlayerDialog(playerid, DIALOG_ORIGIN, DIALOG_STYLE_INPUT, "Registration", "What is your character's origin? (IC)\n\tPlease type it below:", "Continue", "Leave"); } }
I don't want to store useless information as if someone quit in the middle of the tutorial, I want them to completely re-do it. In other words; they won't be registered. |