stock ShowPlayerVariants(playerid)
{
new counted = 0;
new string2[1400],string3[300];
new Float:x, Float:y, Float:z;
string2[0] = '\0';
for(new i = 0; i < MAX_PLAYERS; i++)
{
GetPlayerPos(i, x, y, z);
if(PlayerInfo[i][pSAPASS] == 0 && GetPosCity(x,y) == 1 || PlayerInfo[i][pSAPASS] == 0 && GetPosCity(x,y) == 2)
{
counted++;
new WANTED[40];
if(WantedLevel[i] == 1)
{
WANTED = "GESUCHT";
}
new SupportType[70];
new klmtext[20];
if(GetPosCity(x,y) == 1) { SupportType = "San Fierro"; }
if(GetPosCity(x,y) == 2) { SupportType = "Las Venturas"; }
format(string2,sizeof(string2),"%s%s | ID: %d | %s In: %s\n",string2,Spielername(i),i,WANTED,SupportType);
}
}
format(string3,sizeof(string3),"{0087FF}Unerlaubte Aufenthalte: %d",counted);
ShowPlayerDialog(playerid, DIALOG_TICKETS, DIALOG_STYLE_LIST, string3, string2, "Annehmen", "Schließen");
return 1;
}
Nun wird das aber nicht so angezeigt ist wie ich will sondern so:
Wie kann ich das verhindern?