Error Help :(

Wichtiger Hinweis: Bitte ändert nicht manuell die Schriftfarbe auf schwarz sondern belasst es bei der Standardeinstellung. Somit tragt ihr dazu bei dass euer Text auch bei Verwendung unseren dunklen Forenstils noch lesbar ist!

Tipp: Ihr wollt längere Codeausschnitte oder Logfiles bereitstellen? Benutzt unseren eigenen PasteBin-Dienst Link
  • Hm also ich schreib mal denn script auszug und mit //Text hintendran was fürn error es ist...



    }
    public OnVehicleRespray(vehicleid, color1, color2) //: error 025: function heading differs from prototype
    {
    for(new i = 0; i < sizeof(CarInfo); i++)
    {
    if(vehicleid == CarInfo[i][ownedvehicle])
    {
    CarInfo[i][cColorOne] = color1;
    CarInfo[i][cColorTwo] = color2;
    printf("[CarOwnership report");
    printf("** Auto %s[%d] umgesprüht %d and %d",CarInfo[i][cDescription],i,color1,color2);
    }
    }
    return 1;



    Was willen der von mir?


  • Das muss so aussehen :D


    }
    public OnVehicleRespray(playerid, vehicleid, color1, color2) // Da fehlte "playerid"
    {
    for(new i = 0; i < sizeof(CarInfo); i++)
    {
    if(vehicleid == CarInfo[i][ownedvehicle])
    {
    CarInfo[i][cColorOne] = color1;
    CarInfo[i][cColorTwo] = color2;
    printf("[CarOwnership report");
    printf("** Auto %s[%d] umgesprüht %d and %d",CarInfo[i][cDescription],i,color1,color2);
    }
    }
    return 1;