Nummernschild

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
  • Beitrag von Douq ()

    Dieser Beitrag wurde vom Autor gelöscht ().
  • Das Auto wird jetzt gar nicht mehr gespawnt.


    Code:


    enum carEnum{
    id_x,
    model,
    besitzer,
    vcolor1,
    vcolor2,
    numberplate,
    Float:c_x,
    Float:c_y,
    Float:c_z,
    Float:c_r,
    db_id
    }
    new cInfo[50][carEnum];




    public OnPlayerCarsLoad(playerid)
    {
    new num_fields,num_rows;
    cache_get_data(num_rows,num_fields,dbhandle);
    if(!num_rows)return 1;
    for(new i=0; i<num_rows; i++)
    {
    new idx=getFreeCarID();
    cInfo[idx][model]=cache_get_field_content_int(i,"model",dbhandle);
    cInfo[idx][besitzer]=cache_get_field_content_int(i,"besitzer",dbhandle);
    cInfo[idx][c_x]=cache_get_field_content_float(i,"x",dbhandle);
    cInfo[idx][c_y]=cache_get_field_content_float(i,"y",dbhandle);
    cInfo[idx][c_z]=cache_get_field_content_float(i,"z",dbhandle);
    cInfo[idx][c_r]=cache_get_field_content_float(i,"r",dbhandle);
    cInfo[idx][db_id]=cache_get_field_content_int(i,"id",dbhandle);
    cInfo[idx][vcolor1]=cache_get_field_content_int(i,"color1",dbhandle);
    cInfo[idx][vcolor2]=cache_get_field_content_int(i,"color2",dbhandle);
    cInfo[idx][numberplate]=cache_get_field_content(i,"numberplate",cInfo[idx][numberplate], dbhandle, 32);
    cInfo[idx][id_x]=CreateVehicle(cInfo[idx][model],cInfo[idx][c_x],cInfo[idx][c_y],cInfo[idx][c_z],cInfo[idx][c_r],cInfo[idx][vcolor1],cInfo[idx][vcolor2],-1);
    SetVehicleNumberPlate(cInfo[idx][id_x],cInfo[idx][numberplate]);
    printf("Besitzer %d | ID: %s", cInfo[idx][id_x], cInfo[idx][numberplate]);
    }
    return 1;
    }

  • Im enum
    numberplate,
    Zu
    numberplate[32],


    Beim Laden wie bereits gesagt:
    cInfo[idx][numberplate]=cache_get_field_content(i,"numberplate",cInfo[idx][numberplate], dbhandle, 32);
    Zu
    cache_get_field_content(i,"numberplate",cInfo[idx][numberplate], dbhandle, 32);