Spawn andrespawn cars.
#6

new cartimervehicle;

public OnGamemodeInit()
{
SetTimer("CarTimerSpawn",900000,false);
}

forward CarTimerSpawn();
public CarTimerSpawn()
{
cartimervehicle= CreateVehicle(400, 2505.7378,-1694.3157,13.3312,0,0,0);
SetTimer("CarTimerDestroy",180000,false);
}
forward CarTimerDestroy();
public CarTimerDestroy()
{
DestroyVehicle(cartimervehicle);
SetTimer("CarTimerSpawn",900000,false);
}
Reply


Messages In This Thread
Spawn andrespawn cars. - by bartje01 - 07.02.2010, 18:22
Re: Spawn andrespawn cars. - by bartje01 - 07.02.2010, 19:02
Re: Spawn andrespawn cars. - by mansonh - 07.02.2010, 19:06
Re: Spawn andrespawn cars. - by bartje01 - 07.02.2010, 19:29
Re: Spawn andrespawn cars. - by bartje01 - 07.02.2010, 20:01
Re: Spawn andrespawn cars. - by mansonh - 07.02.2010, 20:29
Re: Spawn andrespawn cars. - by bartje01 - 07.02.2010, 20:40
Re: Spawn andrespawn cars. - by mansonh - 07.02.2010, 20:50
Re: Spawn andrespawn cars. - by bartje01 - 07.02.2010, 20:54

Forum Jump:


Users browsing this thread: 1 Guest(s)