est c'est tout seulement sa donc la je me demande bien comment le serveur peu savoir que c'est les plaque a changer sans mettre sa SetVehicleNumberPlate
public LoadPlate()
{
new arrCoords[2][64];
new strFromFile2[256];
new File: file = fopen("plaque.cfg", io_read);
for(new veh; veh != MAX_VEHICLES; veh++)
if (file)
{
while (veh < sizeof(PlaqueInfo))
{
fread(file, strFromFile2);
split(strFromFile2, arrCoords, '|');
veh = strval(arrCoords[0]);
strmid(PlaqueInfo[veh][pPlaque], arrCoords[1], 0, strlen(arrCoords[1]), 255);
SetVehicleNumberPlate(veh,PlaqueInfo[veh][pPlaque];
veh++;
}
fclose(file);
}
return 1;
}