wie kann ich ein frak carrespawn machen?
bei mir compilet der einfach nicht wenn ich das so habe, kann mir jemand helfen?
if(dialogid == DIALOG_Frakcars)
{
if(response)
{
if(listitem == 0)
{
for(new v=0; v<LSPDCar; v++)
{
if(GetVehicleDriver(v) == -1)
{
SetVehicleToRespawn(v);
SetVehicleHealth(v,1000);
format(string, sizeof(string), "%s hat die Fraktionsfahrzeuge der Fraktion LSPD [ID: 1]respawnt.", sendername);
ABroadCast(COLOR_YELLOW,string,1);
return 1;
}
}
}
}
if(listitem == 1)
{
for(new v=0; v<fbicar; v++)
{
if(GetVehicleDriver(v) == -1)
{
SetVehicleToRespawn(v);
SetVehicleHealth(v,1000);
format(string, sizeof(string), "%s hat die Fraktionsfahrzeuge der Fraktion FBI [ID: 2]respawnt.", sendername);
ABroadCast(COLOR_YELLOW,string,1);
return 1;
}
}
}
}
}
}