16.10.2014, 12:00
Greetings,
I have this code:
Most time I spawn in one of the cars, however, sometimes I don't. Am I doing something wrong?
I have this code:
PHP код:
enum Vehicles
{
v00,
v01
};
new Vehicle[Vehicles];
Vehicle[v00] = CreateVehicle(411, 88.4730, -80.3254, 0.9328, 73.9473, 0, 0, -1);
Vehicle[v01] = CreateVehicle(411, 133.0589, -85.0311, 1.4297, 239.0755, 0, 0, -1);
new v = random(sizeof(Vehicle));
if(!IsVehicleOccupied(v)) PutPlayerInVehicle(i, v, 0);