16.06.2011, 22:11
Hello there!
You need to replace this line:
to something like this:
Before, it was always replacing the contents of 'string', meaning it would always display the last line. The above suggestion should retain the data previous stored into the variable.
Hope that helps!
You need to replace this line:
pawn Код:
Format(string, "%d - %d \n", Count, CarData[v][CarModel]);
pawn Код:
format(string, "%s%d - %d \n", string, Count, CarData[v][CarModel]);
Hope that helps!