10.03.2012, 03:18
make sure you create the vehicle OnGameModeInit
put the vehicles on the position you want then do this
put the vehicles on the position you want then do this
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++) //replace this with PutPlayerInVehicle | Explanation: Loop through all players
{
if(IsPlayerConnected(i)) //checks if the player is connected
{
PutPlayerInVehicle(i,vehid,434); //all players will be put at vehicle id 434
}
}