Wie kann ich amchen das dieses + strval(inputtext) funktioniert ?
SetPVarInt(playerid,"Kontostand") + strval(inputtext);
diese Fehler kommen.
Zeile (1516) : Die Anzahl der Parameter ist falsch
Zeile (1516) : Befehl hat keinen Sinn
Wie kann ich amchen das dieses + strval(inputtext) funktioniert ?
SetPVarInt(playerid,"Kontostand") + strval(inputtext);
diese Fehler kommen.
Zeile (1516) : Die Anzahl der Parameter ist falsch
Zeile (1516) : Befehl hat keinen Sinn
SetPVarInt(playerid,"Kontostand",GetPVarInt(playerid,"Kontostand") + strval(inputtext));
//Selbe aber vllt einfacher zu verstehen:
new Konto = GetPVarInt(playerid,"Kontostand");
SetPVarInt(playerid,"Kontostand",Konto + strval(inputtext));
danke
für die schnelle hilfe.