08.03.2009, 01:49
try doing this for each player.
PutPlayerInVehicle(playerid,playerid,0);
This means their playerid, is put in the vehicle with the same ID as them. This means unless you have two players with the same ID (not possible) they'll all get seperate vehicles.
Note; if vehicleids start at 1, not 0, use PutPlayerInVehicle(playerid,playerid+1,0);
PutPlayerInVehicle(playerid,playerid,0);
This means their playerid, is put in the vehicle with the same ID as them. This means unless you have two players with the same ID (not possible) they'll all get seperate vehicles.
Note; if vehicleids start at 1, not 0, use PutPlayerInVehicle(playerid,playerid+1,0);

