CarRespawn help!
#3

pawn Код:
public OnGameModeInit() //Or OnFilterScriptInit()
{
    SetTimer("RespawnAllCars", 7200000, true); //Will respawn cars every 2 hours.
    return 1;
}

forward RespawnAllCars();
public RespawnAllCars()
{
    for(new v = 0; v < MAX_VEHICLES; v++)
    {
        SetVehicleToRespawn(v);
    }
    return 1;
}
Reply


Messages In This Thread
CarRespawn help! - by HD-RP - 20.09.2012, 10:30
Re: CarRespawn help! - by Riddick94 - 20.09.2012, 10:38
Re: CarRespawn help! - by clarencecuzz - 20.09.2012, 10:51
Re: CarRespawn help! - by HD-RP - 20.09.2012, 17:15

Forum Jump:


Users browsing this thread: 1 Guest(s)