Hallo Commuity,
immer wenn ich mich einlogge kommt ein Dialog ob ich dieses Immobilie kaufen oder nicht kaufen will...
aber ich fordere das Immobilie eigentlich nur dann an, wenn er an einem Haus ist, wo es keinen besitzer gibt...
aberr trotzdem kommt es...
public Update()
{
for(new o = 0; o < sizeof(Bankfach); o++)
{
if(Bankfach[o][1] > 0) Bankfach[o][1]--;
}
for(new m = 0; m < sizeof(Mueltonnen); m++)
{
if(Mueltonnen[m][1] > 0) Mueltonnen[m][1]--;
}
for(new i=0; i<MAX_PLAYERS; i++)
{
if(IstAmHaus(i) && anwasdran[i] == 0 )
{
if(strcmp("Keiner",HausInfo[AnHaus[i]][HausName],true) == 0)
{
if(GetPVarInt(i,"Eingeloggt") == 1){
if(hatload[i] == 0){Immobilie(i);hatload[i] = 1;}
anwasdran[i] = 1;
TextDrawShowForPlayer(i,IBox1[i]);
TextDrawShowForPlayer(i,IBox2[i]);
TextDrawShowForPlayer(i,Uberimo[i]);
TextDrawShowForPlayer(i,Text1[i]);
TextDrawShowForPlayer(i,Text2[i]);
TextDrawShowForPlayer(i,imkaufen[i]);
TextDrawShowForPlayer(i,imabbrechen[i]);
SelectTextDraw(i, 0xBEBEBEFF);
}
}else{}
}
else if(IstAmBiz(i)&&anwasdran[i] == 0)
{
if(strcmp("Keiner",BizInfo[AnBiz[i]][BizName],true) == 0)
{
if(GetPVarInt(i,"Eingeloggt") == 1){
if(hatload[i] == 0){Immobilie(i);hatload[i] = 1;}
anwasdran[i] = 2;
TextDrawShowForPlayer(i,IBox1[i]);
TextDrawShowForPlayer(i,IBox2[i]);
TextDrawShowForPlayer(i,Uberimo[i]);
TextDrawShowForPlayer(i,Text1[i]);
TextDrawShowForPlayer(i,Text2[i]);
TextDrawShowForPlayer(i,imkaufen[i]);
TextDrawShowForPlayer(i,imabbrechen[i]);
SelectTextDraw(i, 0xBEBEBEFF);
}
}else{}
}
else{}
}
return 1;
}