01.08.2012, 20:29
Your filenames are in form of "%number%.ini" or simply "%number%"? If the first case, you've forgotten about .ini.
pawn Код:
format(string, sizeof(string), "Vehicles/%d", i);
//Changes to
format(string, sizeof(string), "Vehicles/%d.ini", i);