Hallo,
ich habe mal wieder ein Problem also ich will einen vorhandenne String in einen string rein Formatieren was auch eigentlich geht aber heute irgendwie mal nicht
new art[18];
switch(listitem) {
case 0:
{
format(art, sizeof(art), "Sparkonto");
}
case 1:
{
format(art, sizeof(art), "Girokonto");
}
case 2:
{
format(art, sizeof(art), "Mehrwertkonto");
}
case 3:
{
format(art, sizeof(art), "Fraktionskonto");
}
}
format(string, sizeof(string), "{FFFFFF}Moechtest du wirklich ein {007DFF}%s, {FFFFFF}fuer {007DFF}%s Euro pro Payday {FFFFFF}erstellen?", art, GetEuroLabel(cost));
wenn ich jetzt bei dem untersten format(string.... den String "art" reinformatieren möchte kommt ein
error 035: argument type mismatch (argument 1)
mfg tdXkiller