Wenn ich das haus kaufe, wird über dem alten TextLabel das neue geschrieben...
{
for(new i=1;i<MAX_HAUS;i++)
{
if(HausInfo[i][haus_pickup])
{
new s[100];
format(s,100,"Besitzer: %s, Preis: %d$",HausInfo[i][haus_besitzer],HausInfo[i][haus_preis]); // Nachricht formatieren
new Text3D:Haustext = Create3DTextLabel(s,ORANGE,HausInfo[i][haus_x],HausInfo[i][haus_y],HausInfo[i][haus_z],30,0);
Update3DTextLabelText(Haustext,ORANGE,s);
}
}
return 1;
}