28.08.2012, 16:50
Down its the code that i have problems...
after this dialog style input
if i write something in that textbox
in the specific user.ini i will find Mail=99
how to fix this ?
PHP Code:
if(dialogid == RegisterEmail)
{
if(response)
{
new email [ 50 ];
format ( email, 50, "%s", inputtext );
if ( strlen ( email ) > 3 )
{
format(string,256,"Your email is : %d",email);
SCM(playerid,COLOR_YELLOW,string);
format ( PlayerInfo [ playerid ] [ pMail ], 50, "%s", email );
TutTime[playerid] = 1;
RegistrationStep[playerid] = 0;
PlayerInfo[playerid][pOrigin] = 1;
return 1;
}
else return ShowPlayerDialog(playerid,RegisterEmail,DIALOG_STYLE_INPUT,""color_yellow"What is your email","Ex: name@yahoo.com","Done","");
}
}
if i write something in that textbox
in the specific user.ini i will find Mail=99
how to fix this ?