28.08.2012, 16:52
replace it
format(string,256,"Your email is : %d",email);
SCM(playerid,COLOR_YELLOW,string);
of this
format(string,256,"Your email is : %s",email);
SCM(playerid,COLOR_YELLOW,string);
the format %s is string (mail) and not number %d (integer)
format(string,256,"Your email is : %d",email);
SCM(playerid,COLOR_YELLOW,string);
of this
format(string,256,"Your email is : %s",email);
SCM(playerid,COLOR_YELLOW,string);
the format %s is string (mail) and not number %d (integer)

