04.10.2009, 12:57
I'm not too sure but, make sure the LoadVehicleData() function executes after the vehciles are created, maybe that is the problem. And also try delaying the timer - You have the timer at 1 second, maybe change it to five seconds (probaby the values are still being read while being written? Worth a try 
Change:
to:

Change:
pawn Код:
SetTimer("SaveVehicleData", 1000, 1);
pawn Код:
SetTimer("SaveVehicleData", 5000, 1);

