AddStaticVehicleEx problem - 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: AddStaticVehicleEx problem (
/showthread.php?tid=425780)
AddStaticVehicleEx problem -
DuarteCambra - 26.03.2013
I use this code for PD Vehicles, but it still respawns after some seconds... Any ideas?
Код:
AddStaticVehicleEx(490,2661.0996100,-3531.0996100,7.6000000,0.0000000,-1,-1,15,-1); //FBI Rancher
Re: AddStaticVehicleEx problem -
Nivniv2 - 26.03.2013
Код:
AddStaticVehicleEx(490,2661.0996100,-3531.0996100,7.6000000,0.0000000,-1,-1,-1,-1); //FBI Rancher
Re: AddStaticVehicleEx problem -
Blast3r - 26.03.2013
Quote:
Originally Posted by DuarteCambra
I use this code for PD Vehicles, but it still respawns after some seconds... Any ideas?
Код:
AddStaticVehicleEx(490,2661.0996100,-3531.0996100,7.6000000,0.0000000,-1,-1,15,-1); //FBI Rancher
|
AddStaticVehicleEx(490,2661.0996100,-3531.0996100,7.6000000,0.0000000,-1,-1,-1);
Your respawn time was 15 seconds, as you had one additional number.
AW: AddStaticVehicleEx problem -
DuarteCambra - 26.03.2013
Thanks, guys.