Hey,
undzwar habe ich folgende warnings: C:\Dokumente und Einstellungen\Maurice\Desktop\blabla\filterscripts\autohaussystem.pwn(102) : warning 213: tag mismatch
C:\Dokumente und Einstellungen\Maurice\Desktop\blabla\filterscripts\autohaussystem.pwn(103) : warning 213: tag mismatch
C:\Dokumente und Einstellungen\Maurice\Desktop\blabla\filterscripts\autohaussystem.pwn(104) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
3 Warnings.
mir ist schon klar was das bedeutet nur ich finde den fehler nicht. Hier mal die ganzen zeilen:
stock loadautos()
{
for(new i; i<=MAX_AUTOS; i++) {
e_auto[i][a_x] = mysql_GetFloatWithInt("autohaus", "x", "id", i);
e_auto[i][a_y] = mysql_GetFloatWithInt("autohaus", "y", "id", i);
e_auto[i][a_z] = mysql_GetFloatWithInt("autohaus", "z", "id", i);
}
return 1;
}
und:
stock Float:mysql_GetFloatWithInt(Table[], Field[], Where[], Is)
{
new query[128], Float:sqlfloat;
mysql_real_escape_string(Table, Table);
mysql_real_escape_string(Field, Field);
mysql_real_escape_string(Where, Where);
format(query, 128, "SELECT %s FROM %s WHERE %s = '%d'", Field, Table, Where, Is);
mysql_query(query);
mysql_store_result();
mysql_fetch_float(sqlfloat);
mysql_free_result();
return sqlfloat;
}