Hey wie meine Überschrift schon darauf hindeutet zeig die Fraktionsliste nur bis Fraktion 7 die Fraktionen im Dialog an
weis aber nicht woran das liegen könnte.
Codes:
CMD:fraktionen(playerid)
{
printf("Der Spieler %s hat /fraktionen ausgeführt!",SpielerName(playerid));
if(!IsPlayerConnected(playerid))return 1;
return ShowFactionList(playerid);
}
new const FrakName[][70]={
"0.Zivilist",
"1.LSPD",
"2.Medic",
"3.GroveStreet",
"4.Ballas",
"5.Lcn",
"6.LostMC",
"7.Fahrschule",
"8.San News"
};
stock ShowFactionList(playerid)
{
new gesamt[400],inhalt[70];
for(new f=1;f<MAX_FRAK;f++)
{
format(inhalt,70,"%s\n",FrakName[f]);
strcat(gesamt,inhalt);
}
return ShowPlayerDialog(playerid,DIALOG_FACTIONLIST,DIALOG_STYLE_MSGBOX,"Fraktions Liste",gesamt,"Ok","");
}
mfg. Aerox