hi ich hab ein eigenes kleines mini dynamisches autohaus system gebalstelt aber wenn ich ingame ein auto erstelle kommen gleich 50-100 mehr anstatt nur eins hier ist der stock dafür
stock CreateAhCar(modelid,name[],Float:x,Float:y,Float:z,Float:z_angle,color1,color2,kaufpreis,verkaufspreis)
{
//modelid ist die ID (wiki.sa-mp.com/wiki/Vehicle_Model_ID_List)
//name der name vom wagen
//Float:x - Float:y - Float: z - Float:z_angle -> die spawnkoords
//color1 & 2 die farben
//kaufpreis & verkaufspreis wenn man das fahrzeug (ver-)kauft, der betrag den man bezahlen/bekommt.
for(new i = 0; i < MAX_AUTOHAUS_VEHICLES; i++)
{
ahInfo[i][vID] = modelid;
ahInfo[i][vAhX] = x;
ahInfo[i][vAhY] = y;
ahInfo[i][vAhZ] = z;
ahInfo[i][vAhRot] = z_angle;
ahInfo[i][vColor1] = color1;
ahInfo[i][vColor2] = color2;
ahInfo[i][vPreis] = kaufpreis;
ahInfo[i][vSellPreis] = verkaufspreis;
format(ahInfo[i][vName],50,"%s",name);
ahcar = AddStaticVehicle(modelid,x,y,z,z_angle,color1,color2);
ahcar3dtext = Create3DTextLabel(name,gelb,x,y,z+0.75,15,0);
Attach3DTextLabelToVehicle(ahcar3dtext,modelid,x,y,z);
SaveVehicles();
}
}