[Ajuda] MySql Bugado.
#4

baixa a versгo R41-4 se a sua for anterior
link: https://github.com/pBlueG/SA-MP-MySQL/releases

agora vou ensinar como se fazer

PHP код:
new
    
MySQLConexao;//variavel para armazenar nossa conexгo
public OnGameModeInit()//aqui vamos criar a conexгo
{
    
Conexao mysql_connect("/*ip aqui*/, "/*usuario aqui*/", "/*senha aqui*/", "/*database aqui*/");
    if(mysql_errno(Conexao) == 0)
    {
    printf("
[MYSQLSevidor conectado a base de dados !");
    }
    else {printf("
[MYSQLErro ao conectar-se a base de dados !");}
    return 1;
}
public OnPlayerConnect(playerid)//aqui seleciona a tabela contas
{
   format(Query, sizeof(Query), "
SELECT FROM `contasWHERE `nome` = '%s'", aname);
   mysql_tquery(Conexao, Query, "
ProcurarPlayer", "i", playerid);
   return 1;
}
forward ProcurarPlayer(playerid);//aqui registra ou loga o player
public ProcurarPlayer(playerid)
{
    new aname[MAX_PLAYER_NAME], Data[12];
    GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
    if(cache_num_rows() > 0)
    {
    cache_get_value(0, "
senha", Senha[playerid]);
    cache_get_value(0, "
email", Email[playerid]);
     cache_get_value(0, "
data", Data);
     
    logado[playerid] = 0;
    for(new i; i < 21; i++) TextDrawShowForPlayer(playerid, TextLogin[i]);
    SelectTextDraw(playerid, 0xFFFF00FF);
    TextDrawSetString(TextLogin[16], aname);
    TextDrawSetString(TextLogin[15], Data);
    SCM(playerid, INFOA, "
Login");
    }
    else {
    SelectTextDraw(playerid, 0xFFFF00FF);
    for(new i; i < 16; i++) TextDrawShowForPlayer(playerid, TextRegistro[i]);
    SCM(playerid, INFOA, "
Registro");
    }
    return 1;

use como base para estudo, o sistma й totalmente funcional, e nгo se esqueзa de criar as tabelas manualmente
Reply


Messages In This Thread
MySql Bugado. - by SrDivuOfficial - 02.10.2018, 00:30
Re: MySql Bugado. - by GSantana - 02.10.2018, 01:29
Re: MySql Bugado. - by SrDivuOfficial - 02.10.2018, 02:09
Re: MySql Bugado. - by GSantana - 02.10.2018, 02:49
Re: MySql Bugado. - by SrDivuOfficial - 02.10.2018, 09:49
Re: MySql Bugado. - by Elsric - 02.10.2018, 11:08
Re: MySql Bugado. - by GSantana - 02.10.2018, 14:08
Re: MySql Bugado. - by Malandrin - 02.10.2018, 16:15

Forum Jump:


Users browsing this thread: 1 Guest(s)