30.03.2018, 19:11
Quote:
Veja se funciona :
PHP код:
|
PHP код:
pInfos[playerid][pSenha] = strval(inputtext);
PHP код:
if(dialogid == DIALOG_REGISTRO)
{
if(strval(inputtext) < 4)
{
ShowPlayerDialog(playerid, DIALOG_REGISTRO, DIALOG_STYLE_INPUT, "Bem-Vindo", "Seja bem-vindo jogador!\nDigite uma senha abaixo para se registrar em nosso servidor.", "Confirmar", "Sair");
SendClientMessage(playerid, 0xFF0000AA,"|ERRO|Sua senha precisa ter no minimo 4 caracteres!");
return 1;
}
if(!response)
{
Kick(playerid);
return 1;
}else{
DOF2_CreateFile(arquivo);
DOF2_SetString(arquivo, "Senha", inputtext);
DOF2_SetInt(arquivo, "Dinheiro", pInfos[playerid][pDinheiro]);
DOF2_SetInt(arquivo, "Skin", 23);
DOF2_SetInt(arquivo, "Score", pInfos[playerid][pScore]);
DOF2_SaveFile();
SendClientMessage(playerid, 0xFF8080AA,"|SERVER|Sua conta foi criada com sucesso!");
SpawnPlayer(playerid);
SetPlayerPos(playerid,1172.6566,-1323.3835,15.4025);
}
}