27.07.2010, 16:30
pawn Код:
if (strcmp("/tune", cmdtext, true, 10) == 0)
{ if(IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid,COLOR_RED2,"You must be in a vehicle");
{
new veh;
veh = GetPlayerVehicleID(playerid);
if(IsValidNosVehicle(veh)) return SendClientMessage(playerid,COLOR_RED2,"You can't tune this vehicle");
AddVehicleComponent(veh,1000);
PlayerPlaySound(playerid, 1097, 0.0, 0.0, 0.0);
ChangeVehicleColor(veh,0,0);
AddVehicleComponent(veh,1078);
AddVehicleComponent(veh,1087);
SendClientMessage(playerid,COLOR_PINK,"Vehicle tunned!!");
}
return 1;
}
Hard to explain why but i'll try
When im in a vehicle and i type /tune it'll say you must be in a vehicle and if you type it out of the car itt will say You can't tune this vehicle
help..