17.03.2010, 00:53
How could i make if a player is not a certain skin they cant enter the car then like 2 seconds later it kicks them out?? ex.( a civilian trys to enter PD car but will get kicked out when they get in.)
public OnGameModeInit() {
SetTimer("RespawnAllVehicles", 86400000, 1);
}
forward RespawnAllVehicles();
public RespawnAllVehicles() {
for(new v = 0; v < MAX_VEHICLES; v ++ ) {
SetVehicleToRespawn(v);
}
}
Originally Posted by Steven82
Thank you very much you are a life saver xD.
|