[HELP] How to stop spawned car from respawing
#1

Title says it...
I tryed to make it but i just cant grasp it!

my spawn car cmd...
Код:
CMD:carspawn(playerid ,params[])
{
	new string[128];
	new carID ,color1 ,color2;
	
	new Float:x,Float:y,Float:z;
	
	if ( pInfo[playerid][admin] >= 5 )
	{
	    if (!sscanf(params ,"iii" ,carID ,color1 ,color2) )
	    {
	        if ( carID >= 400 && carID <= 611 )
	        {
		   	GetPlayerPos(playerid ,x ,y,z);
		   	CreateVehicle(carID ,x - 1,y - 2,z ,90,color1 ,color2 ,-1);
      	   		spawned_car_count++;
			format(string ,sizeof(string) ,"You spawned vehicle with ID %i" ,carID);
		        SCM(playerid ,COLOR_LIME ,string);
		  }
		  else return SCM(playerid ,COLOR_ORANGE ,"There isn't vehicle with that ID! (400 - 611)");

		}
		else return SCM(playerid ,COLOR_WHITE ,"USE: /spawnCar [vehicle ID] [color 1] [color 2]");
	}
	else return SCM(playerid ,COLOR_ORANGE ,"You are not an admin!");
	
	return 1;
}
Reply


Messages In This Thread
[HELP] How to stop spawned car from respawing - by detter - 15.07.2012, 11:04
Re: [HELP] How to stop spawned car from respawing - by Dan. - 15.07.2012, 11:20
Re: [HELP] How to stop spawned car from respawing - by detter - 15.07.2012, 11:32

Forum Jump:


Users browsing this thread: 2 Guest(s)