if(dini_Get(Hausdatei,"Besitzer")=="keiner")// Fehler Zeile
{
new hdlabel[50];
format(hdlabel,sizeof(hdlabel),"HausID: %d\nPreis: %d$\nInterior: %d",dini_Int(Hausdatei,"HausID"),dini_Int(Hausdatei,"Preis"),dini_Int(Hausdatei,"Interior"));
Create3DTextLabel(hdlabel,GELB,dini_Float(Hausdatei,"X-Pos"),dini_Float(Hausdatei,"Y-Pos"),dini_Float(Hausdatei,"Z-Pos"),25,0);
}
else
{
new hdlabel[50];
format(hdlabel,sizeof(hdlabel),"HausID: %d\nBesitzer: %s",dini_Int(Hausdatei,"HausID"),dini_Get(Hausdatei,"Besitzer"));
Create3DTextLabel(hdlabel,GELB,dini_Float(Hausdatei,"X-Pos"),dini_Float(Hausdatei,"Y-Pos"),dini_Float(Hausdatei,"Z-Pos"),25,0);
}
Mein Error: error 033: array must be indexed (variable "dini_Get")
Ich meine man müsste hier ja irgendwas "true" setzen, aber ich komme nicht weiter:(