Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*Piccola Funzione di Respawn Automatico.*/
- #include <a_samp>
- public OnFilterScriptInit(){
- SetTimer("RespawnAutomatico", 20*60000, true); //20 Minuti.
- return 1;
- }
- /*Fuori Da ogni Funzione*/
- forward RespawnAutomatico();
- public RespawnAutomatico()
- {
- SendClientMessageToAll(-1, "Respawn Automatico - Tutti i veicoli sono stati respawnati.");
- for(new i=0; i<MAX_VEHICLES; i++)SetVehicleToRespawn(i);
- }
Advertisement
Add Comment
Please, Sign In to add comment