Hallo Community,
wenn ich etwas auszahle oder einzahle bekomme ich immer eine rießige zahl zugeweisen auf mein konto, aber die ich gar nicht eingegeben habe...
if(dialogid == DIALOG_BANK4)
{
if(response)
{
new ein = floatstr(inputtext);
if(ein >= SInfo[playerid][pBankkonto] && ein > 0.00)
{
SInfo[playerid][pGeld] += ein; Geldupdate(playerid);
SInfo[playerid][pBankkonto] -= ein;
format(str,sizeof(str),"Du hast noch %.2fSA$ auf deinem Konto.",SInfo[playerid][pBankkonto]);
ShowPlayerDialog(playerid,DIALOG_BANK2,DIALOG_STYLE_MSGBOX,"Kontosrand",str,"Zurück","Abbrechen");
}else{format(str,sizeof(str),"Soviel Geld hast du nicht auf dem Konto!\n\nWie viel willst du auszahlen?"); ShowPlayerDialog(playerid,DIALOG_BANK3,DIALOG_STYLE_INPUT,"Error",str,"Auszahlen","Abbrechen");}
}
}
LG