Hallo Breadfish
ich habe ein befehl für die leaders gescriptet aber da soll noch der jetziger beziehungsweise Letzter fahrer dabei stehen
zum beispiel.
Auto: Sultan | Fahrer: Paddy87 | CarID: 1 | Tankart: Diesel | Abgeschleppt
Code
ocmd:fcarinfo(playerid)
{
new string[800],text1[50],text2[50];
for(new i = 0; i < sizeof(FactionCars); i++) {
if(FactionCars[i][fVehid] >= 400 && FactionCars[i][fVehid] <= 611){
if(FactionCars[i][fFaction] == Spielerinfo[playerid][pLeader])
{
if(FactionCars[i][fTankart] == 1) { text1 = "{FFFF00}Benzin"; }
else if(FactionCars[i][fTankart] == 2) { text1 = "{FFFF00}Diesel"; }
else if(FactionCars[i][fTankart] == 3) { text1 = "{FFFF00}Erdgas"; }
else if(FactionCars[i][fGesperrt] == 1) { text2 = "{FFFFFF}| {FF0000}Abgeschleppt"; }
else if(FactionCars[i][fGesperrt] == 0) { text2 = " "; }
format(string, sizeof(string), "%s\nAuto: %s | CarID: %d | Tankart: %s %s", string,CarName[FactionCars[i][fVehid]-400], FactionCars[i][fCarid],text1,text2);
}
}
}
ShowPlayerDialog(playerid,DIALOG_SONSTIGES,DIALOG_STYLE_LIST,"Frakautoinfo",string,"oky","Abbrechen");
return 1;
}
Alles anzeigen