#1

So, How do I set a timer that automatically sets vehicles to respawn using my stock
pawn Код:
stock SetEmptyVehiclesToRespawn()
Reply
#2

Timer should be every ten mins
Reply
#3

Put it down OnFilterScriptInit()/OnGameModeInit()
Код:
SetTImer("RespawnVehicles",600000,1);
Код:
forward RespawnVehicles();
public RespawnVehicles()
{
      for(new i; i < MAX_VEHICLES; i++)
      SetVehicleToRespawn(i);
      return 1;
}
Reply
#4

Alright thanks, Repped
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)