[Ajuda] Bug com DIALOG TABLIST HEADERS
#1

Parece ser uma duvida inъtil mas й muito chatinho trabalhar com essa dialog, to tentando adaptar a DIALOG TABLIST HEADERS ao meu sistema de relatos, mas nгo consigo, to quebrando a cabeзa entгo resolvi pedir ajuda aqui, ficarei grato se alguйm souber a soluзгo ou o erro que estб ocasionando isso






Codigo
PHP код:
    if(rows)
    {
        for(new 
0rowsi++ )
        {
            
cache_get_field_content(i,"Jogador",NomePlayermysql);
            
cache_get_field_content(i,"Relato",Relatosmysql);
            
cache_get_field_content(i,"Hora"Horariomysql);
            
cache_get_field_content(i,"Minutos"Minutomysql);
            
cache_get_field_content(i,"Segundos"Segundomysql);
            
format(Resultado,sizeof(Resultado),"Player\tRelato\tHorario\t%s\n %s\t%s\t%d:%d:%d\n",ResultadoNomePlayerRelatosstrval(Horario), strval(Minuto), strval(Segundo));
        }
        
ShowPlayerDialog(playerid,666,DIALOG_STYLE_TABLIST_HEADERS,"Relatos",Resultado,"Ok","Sair");
    }
    else 
SendClientMessage(playerid, -1"sem relatos"); 
Reply
#2

Tente algo como isto:


PHP код:
new Resultado[2000], str[200];
if(
rows)
{
    
strcat(Resultado"Player\tRelato\tHorario\n");
    for(new 
0rowsi++ )
    {
        
cache_get_field_content(i,"Jogador",NomePlayermysql);
        
cache_get_field_content(i,"Relato",Relatosmysql);
        
cache_get_field_content(i,"Hora"Horariomysql);
        
cache_get_field_content(i,"Minutos"Minutomysql);
        
cache_get_field_content(i,"Segundos"Segundomysql);
        
format(str,sizeof(str),"%s\t%s\t%d:%d:%d\n" NomePlayerRelatosstrval(Horario), strval(Minuto), strval(Segundo));
        
strcat(Resultadostr);
    }
    
ShowPlayerDialog(playerid,666,DIALOG_STYLE_TABLIST_HEADERS,"Relatos",Resultado,"Ok","Sair");
    
strdel(Resultado0sizeof(Resultado));
}
else 
SendClientMessage(playerid, -1"Sem relatos."); 
Reply
#3

Quote:
Originally Posted by humildadeforever
Посмотреть сообщение
Tente algo como isto:


PHP код:
new Resultado[2000], str[200];
if(
rows)
{
    
strcat(Resultado"Player\tRelato\tHorario\n");
    for(new 
0rowsi++ )
    {
        
cache_get_field_content(i,"Jogador",NomePlayermysql);
        
cache_get_field_content(i,"Relato",Relatosmysql);
        
cache_get_field_content(i,"Hora"Horariomysql);
        
cache_get_field_content(i,"Minutos"Minutomysql);
        
cache_get_field_content(i,"Segundos"Segundomysql);
        
format(str,sizeof(str),"%s\t%s\t%d:%d:%d\n" NomePlayerRelatosstrval(Horario), strval(Minuto), strval(Segundo));
        
strcat(Resultadostr);
    }
    
ShowPlayerDialog(playerid,666,DIALOG_STYLE_TABLIST_HEADERS,"Relatos",Resultado,"Ok","Sair");
    
strdel(Resultado0sizeof(Resultado));
}
else 
SendClientMessage(playerid, -1"Sem relatos."); 
Funcionou perfeitamente, obrigado!!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)