04.07.2013, 19:54
Okay. I got this now:
Would this delete all vehicles that have the same owner?
pawn Код:
for(new i; i < MAX_VEHICLES; i++)
{
if(!strcmp(AVehicleData[i][Owner],pName))
{
DestroyVehicle(i);
continue;
}
}

