15.04.2013, 16:11
Aumente o valor de celulas da string para 1000:
Faзa um debug com os valores das variбveis, Use printf.
Coloque um else na callback SQL_DadosPlayer, ficando:
edit: Esta usando a callback OnQueryError?
pawn Код:
new temp[30];
Coloque um else na callback SQL_DadosPlayer, ficando:
pawn Код:
PlayerInfo[playerid][pSpawn] = strval(temp);
cache_get_field_content(0,"dinheiro",temp,Conexao);
PlayerInfo[playerid][pDinheiro] = strval(temp);
GivePlayerMoney(playerid, strval(temp));
}
else return SendClientMessage(playerid,-1,#Houve um erro ao carregar a DB);
return 1;
}
pawn Код:
public OnQueryError(errorid, error[], resultid, extraid, callback[], query[], connectionHandle)
{
printf(#ErrorID:%i,errorid);
switch(errorid)
{
case CR_COMMAND_OUT_OF_SYNC:
{
printf("Commands out of sync for thread ID: %d",resultid);
}
case ER_SYNTAX_ERROR:
{
printf("Something is wrong in your syntax, query: %s",query);
}
}
return 1;
}