02.07.2012, 20:54
Olб, Como vгo? Entгo, Tava vendo o FilterScript do Giovanne, Ele й esse:
Ps: Utima linha foi minha de teste ^^, Funfo
Entгo, A senha que eu digitei para registrar tinha 4 digitos, E na pasta do player consta a seguinte senha:
Senha=36438238
Admin=0
Dinheiro=100
Skin=0
Score=0
Sabem o motivo? Obrigado !
pawn Код:
#include <a_samp>
#include <dini>
#include <dudb>
#include <zcmd>
#pragma tabsize 0
#pragma unused ret_memcpy
#define LOCAL_JOGADORES "Players/%s.ini"
#define GOLD_COLOR 0xEEC900AA
#define ERRO_COLOR 0xFF0000AA
#define AVISO_COLOR 0xFF8C00AA
enum pInfo
{
pSenha,
pAdmin,
pScore,
pSkin,
pNome,
pDinheiro
};
new PlayerInfo[MAX_PLAYERS][pInfo];
new logado[MAX_PLAYERS];
new players;
public OnFilterScriptInit()
{
print("\n--------------------------------------");
print(" FilterScript - Login/Registro Dialog");
print(" Por: Giovanni_Ultimate");
print("--------------------------------------\n");
return 1;
}
public OnPlayerConnect(playerid)
{
SendClientMessageToAll(GOLD_COLOR, "Esse GameMode usa o Login/Registro feito por Giovanni_Ultimate!");
SendClientMessageToAll(GOLD_COLOR, "Vocк pode retirar essas mensagens se desejar!");
SendClientMessageToAll(GOLD_COLOR, "Cheque o comando /creditos no filterscript!");
SendClientMessageToAll(GOLD_COLOR, "Se quiser usa-lo. Edite-o a seu gosto!");
new nome[MAX_PLAYER_NAME], arquivo[256], string[56];
players += 1;
GetPlayerName(playerid,nome, sizeof(nome));
format(arquivo, sizeof(arquivo), LOCAL_JOGADORES, nome);
format(string, sizeof(string), "%s connectou-se no servidor. [%d/50]", nome, players, MAX_PLAYERS);
SendClientMessageToAll(AVISO_COLOR, string);
if(dini_Exists(arquivo))
{
ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "Logue-se!", "Bem-Vindo ao Filterscript \n Login/Register Dialog \n De Giovanni_Ultimate! \n Logue na sua conta colocando sua senha abaixo:","Logar", "Sair");
}
else
{
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT, "Registre-se", "Bem-Vindo ao Filterscript \n Login/Register Dialog \n De Giovanni_Ultimate! \n Registre sua conta colocando a senha abaixo:", "Registrar", "Sair");
}
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
new nome[MAX_PLAYER_NAME], arquivo[256], string[64];
players -= 1;
GetPlayerName(playerid, nome, sizeof(nome));
switch(reason)
{
case 0: format(string, sizeof(string), "%s saiu do servidor(Crash/Conexгo) [%d/50]", nome, players, MAX_PLAYERS);
case 1: format(string, sizeof(string), "%s saiu do servidor(/q) [%d/50]", nome, players, MAX_PLAYERS);
case 2: format(string, sizeof(string), "%s saiu do servidor(Kickado/Banido) [%d/50]", nome, players, MAX_PLAYERS);
}
SendClientMessageToAll(AVISO_COLOR, string);
format(arquivo, sizeof(arquivo), LOCAL_JOGADORES, nome);
dini_IntSet(arquivo, "Score", PlayerInfo[playerid][pScore]);
dini_IntSet(arquivo, "Dinheiro", PlayerInfo[playerid][pDinheiro]);
dini_IntSet(arquivo, "Skin", PlayerInfo[playerid][pSkin]);
dini_IntSet(arquivo, "Senha", PlayerInfo[playerid][pSenha]);
dini_IntSet(arquivo, "Admin", PlayerInfo[playerid][pAdmin]);
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp("/creditos", cmdtext, true, 10) == 0)
{
SendClientMessage(playerid, GOLD_COLOR, "Creditos - Sistema: Giovanni_Ultimate");
SendClientMessage(playerid, GOLD_COLOR, "Creditos - Includes: Dini, Dudb");
SendClientMessage(playerid, GOLD_COLOR, "Creditos - Familia e Apoio: Ultimate");
return 1;
}
return 0;
}
public OnPlayerRequestSpawn(playerid)
{
if(logado[playerid] == 0)
{
SendClientMessage(playerid, ERRO_COLOR, "Vocк foi kickado por clicar em spawn antes de logar!");
Kick(playerid);
}
return 1;
}
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == 1)
{
new nome[MAX_PLAYER_NAME], arquivo[256], string[128];
GetPlayerName(playerid, nome, sizeof(nome));
format(arquivo, sizeof(arquivo), LOCAL_JOGADORES, nome);
if(!response) Kick(playerid);
if(!strlen(inputtext)) return ShowPlayerDialog(playerid, 1, DIALOG_STYLE_INPUT, "Registre-se", "Bem-Vindo ao Filterscript \n Login/Register Dialog \n De Giovanni_Ultimate! \n Registre sua conta colocando a senha abaixo:", "Registrar", "Sair");
dini_Create(arquivo);
dini_IntSet(arquivo, "Senha", udb_hash(inputtext));
dini_IntSet(arquivo, "Admin", PlayerInfo[playerid][pAdmin] = 0);
dini_IntSet(arquivo, "Dinheiro", PlayerInfo[playerid][pDinheiro] = 100);
dini_IntSet(arquivo, "Skin", PlayerInfo[playerid][pSkin] = 0);
dini_IntSet(arquivo, "Score", PlayerInfo[playerid][pScore] = 0);
format(string, sizeof(string), "Vocк foi logado automaticamente. Nick: %s. Senha: %s", nome, inputtext);
PlayerInfo[playerid][pSenha] = dini_Int(arquivo, "Senha");
SendClientMessage(playerid, AVISO_COLOR, string);
logado[playerid] = 1;
}
if(dialogid == 2)
{
new nome[MAX_PLAYER_NAME], arquivo[256];
GetPlayerName(playerid, nome, sizeof(nome));
format(arquivo, sizeof(arquivo), LOCAL_JOGADORES, nome);
if(!response) return Kick(playerid);
if(!strlen(inputtext)) return ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "Logue-se!", "Bem-Vindo ao Filterscript \n Login/Register Dialog \n De Giovanni_Ultimate! \n Logue na sua conta colocando sua senha abaixo:","Logar", "Sair");
new senha;
senha = dini_Int(arquivo, "Senha")
if(udb_hash(inputtext) != senha)
{
SendClientMessage(playerid, ERRO_COLOR, "[Erro] Vocк errou a senha. Tente novamente!");
ShowPlayerDialog(playerid, 2, DIALOG_STYLE_INPUT, "Logue-se!", "Bem-Vindo ao Filterscript \n Login/Register Dialog \n De Giovanni_Ultimate! \n Logue na sua conta colocando sua senha abaixo:","Logar", "Sair");
}
if(udb_hash(inputtext) == senha)
{
logado[playerid] = 1;
printf("%s logou no server.", nome);
PlayerInfo[playerid][pDinheiro] = dini_Int(arquivo, "Dinheiro");
GivePlayerMoney(playerid, PlayerInfo[playerid][pDinheiro]);
PlayerInfo[playerid][pScore] = dini_Int(arquivo, "Score");
PlayerInfo[playerid][pSkin] = dini_Int(arquivo, "Skin");
SetPlayerSkin(playerid, PlayerInfo[playerid][pSkin]);
PlayerInfo[playerid][pSenha] = dini_Int(arquivo, "Senha");
PlayerInfo[playerid][pAdmin] = dini_Int(arquivo, "Admin");
SendClientMessage(playerid, AVISO_COLOR, "[Aviso] Logado com sucesso!");
}
}
return 1;
}
public OnPlayerClickPlayer(playerid, clickedplayerid, source)
{
new info[512],info0[70],info1[600],info2[70],info3[70],info4[512], nome[MAX_PLAYER_NAME];
GetPlayerName(clickedplayerid, nome, sizeof(nome));
PlayerInfo[clickedplayerid][pSkin] = GetPlayerSkin(clickedplayerid);
PlayerInfo[clickedplayerid][pScore] = GetPlayerScore(clickedplayerid);
PlayerInfo[clickedplayerid][pDinheiro] = GetPlayerMoney(clickedplayerid);
format(info0, 70, "Nome: %s", nome);
format(info1, 70, "Dinheiro: %d", PlayerInfo[clickedplayerid][pDinheiro]);
format(info2, 70, "Skin: %d", PlayerInfo[clickedplayerid][pSkin]);
format(info3, 70, "Score: %d", PlayerInfo[clickedplayerid][pScore]);
format(info4, 70, "%s", nome);
format(info, 70, "%s\n%s\n%s\n%s",info0,info1,info2,info3);
ShowPlayerDialog(playerid, 13444, DIALOG_STYLE_MSGBOX, info4, info, "Ok","Sair");
return 1;
}
CMD:aa(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] == 0)
{
SendClientMessage(playerid, -1, "OIi");
}
return 1;
}
Entгo, A senha que eu digitei para registrar tinha 4 digitos, E na pasta do player consta a seguinte senha:
Senha=36438238
Admin=0
Dinheiro=100
Skin=0
Score=0
Sabem o motivo? Obrigado !