14.05.2011, 14:20
Hello . i have tryd so many ways to fix this but didn't found help yet.
Error
if someone have time to help , i am very thanks then.
pawn Код:
public LoadDonatorList()
{
new arrCoords[2][64];
new strFromFile2[256];
new File: file = fopen("DonatorList.cfg", io_read);
if (file)
{
new idx;
while (idx < sizeof(DonatorList))
{
fread(file, strFromFile2);
split(strFromFile2, arrCoords, '|');
strmid(DonatorList[idx][Name], arrCoords[0], 0, strlen(arrCoords[0]), 255);
DonatorList[idx][Amount] = floatstr(arrCoords[1]); // < --- Line 17017 !!
idx++;
}
fclose(file);
}
return 1;
}
Код:
(17017) : warning 213: tag mismatch