19.11.2011, 18:31
Hola, resulta que poseo el sistema de admin LuxAdmin, y al momento de que alguien se conecte siempre pide que se registren, y uno tiene que ingresar de la forma manual.
Acб hay una imagen
Y acб esta el codigo del dialogo.
Acб hay una imagen
Y acб esta el codigo del dialogo.
pawn Код:
if(ServerInfo[MustLogin] == 1 && AccInfo[playerid][Registered] == 1 && AccInfo[playerid][LoggedIn] == 0)
{
#if USE_DIALOGS == true
new lstring[256];
format(lstring,256,"Esta cuenta '%s ' ya estб registrada \n\n Ingresa para poder entrar el servidor:",pName(playerid));
ShowPlayerDialog(playerid,DIALOGID+67,DIALOG_STYLE_INPUT,"Ingreso de cuenta",lstring,"Ingresar","Salir");
#endif
return 1;
}
if(AccInfo[playerid][Registered] == 0 && ServerInfo[MustRegister] == 1)
{
#if USE_DIALOGS == true
new rstring[256];
format(rstring,256,"Bienvenido a '%s'\n\nCuenta '%s' bi estб registrada!\n\nIngresa una contraseсa para registrarte:",GetServerHostName(),pName(playerid));
ShowPlayerDialog(playerid,DIALOGID+66,DIALOG_STYLE_INPUT,"Registro de cuenta",rstring,"Registrar","Salir");
#endif
return 1;
}