15.07.2012, 11:04
Title says it...
I tryed to make it but i just cant grasp it!
my spawn car cmd...
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;
}

