SA-MP Forums Archive
Car Spawn Timer? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Car Spawn Timer? (/showthread.php?tid=65637)



Car Spawn Timer? - kokkie20 - 14.02.2009

Hi i got a question
i am using einstein's streamer to use my admin house, but got a problem
when i go to the admin house, the cars are falling into the water because they spawn to quick.
is there a way to fix this?
thanks


Re: Car Spawn Timer? - Danut - 14.02.2009

are the cars under a Building ?


Re: Car Spawn Timer? - MonkZemun - 14.10.2011

..and i also need a solution for this,can someone help?


Re: Car Spawn Timer? - [MG]Dimi - 14.10.2011

PHP код:
forward Load_veh();

public 
Load_veh()
{
    
//your vehicle spawning code here
    
return 1;
}
public 
OnGameModeInit()
{
    
SetTimer("Load_veh",10000,false);
    return 
1;




Re: Car Spawn Timer? - MonkZemun - 14.10.2011

Quote:
Originally Posted by [MG]Dimi
Посмотреть сообщение
PHP код:
forward Load_veh();
public 
Load_veh()
{
    
//your vehicle spawning code here
    
return 1;
}
public 
OnGameModeInit()
{
    
SetTimer("Load_veh",10000,false);
    return 
1;

thank you!