08.09.2013, 14:21
I have a respawn vehicle code set up, but when they exit the vehicle it respawns right away, causing the player to get trapped. I want it to wait for about 3 seconds before respawning the vehicle to give the player enough time to move.
Код:
public OnPlayerExitVehicle(playerid, vehicleid) { for(new i = 0; i < MAX_VEHICLES; i++) { SetVehicleToRespawn(i); } return 1; }