Hallo, ich habe mir ein VehicleShop gemacht, jedoch spawnen die Autohaus Autos nicht. An was könnte das liegen?
Hier mal bissl Code:
for(new i=0;i<sizeof(VehicleShop);i++)
{
autoVehicles[i] = CreateVehicleEx(VehicleShop[i][modelid], VehicleShop[i][aPosx], VehicleShop[i][aPosy], VehicleShop[i][aPosz], VehicleShop[i][aPosa], 1, 1, 180, true);
}
enum pVehicle_BuyData
{
modelid,
Name[35],
Autohaus[40],
Preis,
Float:aPosx,
Float:aPosy,
Float:aPosz,
Float:aPosa,
Float:buySpawnX,
Float:buySpawnY,
Float:buySpawnZ,
Float:buySpawnA
}
new VehicleShop[][pVehicle_BuyData] =
{
// modelid, Name[35], Autohaus[40], Preis, Float:aPosx, Float:aPosy, Float:aPosz, Float:aPosa, Float:buySpawnX, Float:buySpawnY, Float:buySpawnZ, Float:buySpawnA
// Grotti
{451, "Turismo", "Grotti", 450000, 542.2666,-1289.4825,16.9483,0.0342,545.8925,-1267.7640,16.9723,305.5646},
{541, "Bullet", "Grotti", 360000, 532.7595,-1289.4730,16.8671,358.4244, 545.8925,-1267.7640,16.9723,305.5646},
{429, "Banshee", "Grotti", 290000, 551.7199,-1289.4725,16.9284,356.2624, 545.8925,-1267.7640,16.9723,305.5646},
{415, "Cheetah", "Grotti", 320000, 563.4426,-1289.7201,17.0197,359.6872, 545.8925,-1267.7640,16.9723,305.5646},
// Intercars
{562, "Elegy", "Intercars", 32000, 738.9451,-1333.6105,13.2025,179.2566, 751.0938,-1351.3925,13.0877,358.0897},
{560, "Sultan", "Intercars", 89000, 747.4424,-1333.5739,13.2482,179.9806,751.0938,-1351.3925,13.0877,358.0897},
{445, "Admiral", "Intercars", 12000, 755.1055,-1334.0928,13.4168,178.3695,751.0938,-1351.3925,13.0877,358.0897},
{566, "Tahoma", "Intercars", 9000, 765.3920,-1334.3593,13.3257,177.8470, 751.0938,-1351.3925,13.0877,358.0897},
{439, "Stallion", "Intercars", 14500, 783.3915,-1342.0880,13.4366,90.4899, 751.0938,-1351.3925,13.0877,358.0897},
{422, "Bobcat", "Intercars", 12500, 783.5782,-1345.8832,13.5283,89.6478, 751.0938,-1351.3925,13.0877,358.0897},
{405, "Sentinel", "Intercars", 13500, 783.8931,-1362.3302,13.4155,180.0707, 751.0938,-1351.3925,13.0877,358.0897},
{600, "Picador", "Intercars", 7500, 783.9980,-1371.3014,13.2701,1.2505, 751.0938,-1351.3925,13.0877,358.0897},
{589, "Club", "Intercars", 8000, 760.0568,-1370.8573,13.1854,180.8068, 751.0938,-1351.3925,13.0877,358.0897},
{585, "Emperor", "Intercars", 6250, 759.9587,-1360.1382,13.1040,181.0585, 751.0938,-1351.3925,13.0877,358.0897}
// Coutt and Schutz (Bikeshop)
// Flugshop
// Bootshop
};
new autoVehicles[50];
Habe schon alles versucht.
LG Exon