Hallo,
Ich versuche gerade mein komplettes Script auf MySQL umzustellen.
Leider scheitere ich gerade kurz vor Schluss an der Speicherung meines Haus-Systemes.
stock CreateHaus(Float:x,Float:y,Float:z,preis,besitzer[32],innenraum)
{
for(new haus=1;haus<MAX_HAUS;haus++)
{
//Abfrage anstatt if(fexist
mysql_SetFloat("haus", "x", x, "Name", haus);
mysql_SetFloat("haus", "y", y, "Haus Nr.", haus);
mysql_SetFloat("haus", "z", z, "Haus Nr.", haus);
mysql_SetInt("haus", "preis", preis, "Haus Nr.", haus);
mysql_SetString("haus", "besitzer", besitzer, "Haus Nr.", haus);
mysql_SetInt("haus", "innenraum", innenraum, "Haus Nr.", haus);
}
for(new h;h<MAX_HAUS;h++)
{
DestroyDynamic3DTextLabel(HouseLabel[h]);
}
return 1;
}
So einmal bekomme ich bei jedem mysql_Set*** den Error: argument type missmatch (Argument 5)
und ich wüsste gerne welche Abfrage man dort machen könnte, anstatt wie es bei dini ist mit if(exist .
lg