27.06.2014, 05:37
Olha acho que pode ser por vocк estar usando o id do listitem um pouco exagerado olha
nгo precisa usar o listitem 8 e depois o 26 como sгo dialogs separados pode ser simplesmente
listitem 0 , assim :
Entendeu ? teste e fale os resultados.
PHP код:
if(dialogid == LETRAA) // Letra A
{
if(response)
{
if(listitem == 8)
{
ShowPlayerDialog(playerid, LETRASID, DIALOG_STYLE_LIST, "Veiculos ID - Letras", "A\nB\nC\nD\nE\nF\nG\nH\nI\nJ\nK\nL\nM\nN\nO\nP\nQ\nR\nS\nT\nU\nV\nW\nZ", "OK", "Cancelar");
}
return 1;
}
if(dialogid == LETRAB) // Letra B
{
if(response)
{
if(listitem == 26)
{
ShowPlayerDialog(playerid, LETRASID, DIALOG_STYLE_LIST, "Veiculos ID - Letras", "A\nB\nC\nD\nE\nF\nG\nH\nI\nJ\nK\nL\nM\nN\nO\nP\nQ\nR\nS\nT\nU\nV\nW\nZ", "OK", "Cancelar");
}
return 1;
}
listitem 0 , assim :
PHP код:
if(dialogid == LETRAA) // Letra A
{
if(response)
{
if(listitem == 0)
{
ShowPlayerDialog(playerid, LETRASID, DIALOG_STYLE_LIST, "Veiculos ID - Letras", "A\nB\nC\nD\nE\nF\nG\nH\nI\nJ\nK\nL\nM\nN\nO\nP\nQ\nR\nS\nT\nU\nV\nW\nZ", "OK", "Cancelar");
}
return 1;
}
if(dialogid == LETRAB) // Letra B
{
if(response)
{
if(listitem == 0)
{
ShowPlayerDialog(playerid, LETRASID, DIALOG_STYLE_LIST, "Veiculos ID - Letras", "A\nB\nC\nD\nE\nF\nG\nH\nI\nJ\nK\nL\nM\nN\nO\nP\nQ\nR\nS\nT\nU\nV\nW\nZ", "OK", "Cancelar");
}
return 1;
}