28.12.2012, 03:47
If I use this code for spawning:
The objects don't show up at all.
But if I use this code for spawning:
Everything loads perfectly.
For the first code, I still spawn perfectly, with a vehicle, I just can't see the objects meanwhile with defined vehicle and positions, second code, I see objects perfectly.. How could I fix the first code to work properly?
Код:
vehid[playerid] = CreateVehicle(SumoModels[random(sizeof(SumoModels))], SumoSpawns[rand][0], SumoSpawns[rand][1], SumoSpawns[rand][2], SumoSpawns[rand][3], -1, -1, 10000);
But if I use this code for spawning:
Код:
vehid[playerid] = CreateVehicle(402, -2158.5586, -1689.3036, 461.1118, 0.0, -1, -1, 0);
For the first code, I still spawn perfectly, with a vehicle, I just can't see the objects meanwhile with defined vehicle and positions, second code, I see objects perfectly.. How could I fix the first code to work properly?