Hallo.
Ich brauche dringend hilfe
Ich bin am verzweifeln. Ich sitze jetzt seit tagen an diesem teil hier:
fexist(string)
Und hier ist der ganze code:
for(new i = 0; i < MAX_PLAYERS; i++)
{
new ename[MAX_PLAYER_NAME];
new playrname[MAX_PLAYER_NAME];
new string[256];
new vehicleid = GetPlayerVehicleID(i);
GetPlayerName(i, ename, sizeof(ename));
format(string, sizeof(string), "/keys/%s.%d.key", ename, CarInfo[vehicleid][carsid]);
if(GetPlayerState(i) == PLAYER_STATE_DRIVER)
{
GetPlayerName(i, playrname, MAX_PLAYER_NAME);
if(strcmp(CarInfo[vehicleid][carsowner], playrname, true))
{
SetVehicleParamsForPlayer(vehicleid, i, 0, 1);
CarInfo[vehicleid][carslocked] = 1;
RemovePlayerFromVehicle(i);
}
if(!strcmp(CarInfo[vehicleid][carsowner], playrname, true) || fexist(string))
{
SetVehicleParamsForPlayer(vehicleid, i, 0, 0);
CarInfo[vehicleid][carslocked] = 0;
}
}
}
Alles andere geht nur fexist(string) nicht.