Bonjour j'ai un petit soucis, j'ai créé ceci pour montrer un dialog a plussieur personne en même temps, mais seul une seul le vois. je ne vois pas l'erreur, merci d'avance
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(PlayerInfo[i][pJob] == 4)
{
if(TransportDuty[i] > 0)
{
format(string,256,"%s a besoin d'un chauffeur de Taxi.", sendername);
ShowPlayerDialog(i,ACCEPTERTAXI, DIALOG_STYLE_MSGBOX, "Taxi:", string, "Accepter", "Refuser");
return 1;
}
}
}
}