24.07.2016, 10:00
I think its because you are not setting the value of the dialogs (dialogids)
Try doing it like this:
Try doing it like this:
Код:
enum dialogs { DIALOG_LOGIN, DIALOG_REGISTER, DIALOG_SEX, DIALOG_AGE, DIALOG_EMAIL } new DialogID[dialogs]; DialogID[DIALOG_LOGIN] = 1 /*Any unique id*/; DialogID[DIALOG_REGISTER] = 2 /*Any unique id*/; DialogID[DIALOG_SEX] = 3 /*Any unique id*/; DialogID[DIALOG_AGE] = 4 /*Any unique id*/; DialogID[DIALOG_EMAIL] = 5 /*Any unique id*/;