16.07.2016, 13:25
try this:
PHP код:
CMD:engine(playerid, params[])
{
new
vehicleid = GetPlayerVehicleID(playerid),
carid,
vehiclemodel;
if (!IsPlayerInAnyVehicle(playerid))
{
SendErrorMessage(playerid, "You are not in any vehicle.");
}
if (!IsEngineVehicle(vehicleid))
{
SendErrorMessage(playerid, "This vehicle doesn't have an engine.");
}
if (GetPlayerState(playerid) != PLAYER_STATE_DRIVER)
{
SendErrorMessage(playerid, "You can't do this as you're not the driver.");
}
if (PlayerData[playerid][pInjured])
{
SendErrorMessage(playerid, "You can't do this while being injured or dead.");
}
if (ReturnVehicleHealth(vehicleid) <= 300)
{
SendErrorMessage(playerid, "This vehicle is totalled and can't be started.");
}
if (CoreVehicles[vehicleid][vehFuel] < 1)
{
SendErrorMessage(playerid, "The fuel tank is empty.");
}
carid = Car_GetID(vehicleid);
if (carid != -1 && Car_IsOwner(playerid, carid) || CoreVehicles[vehicleid][vehTemporary] || (PlayerData[playerid][pFaction] != -1 && CarData[carid][carFaction] == GetFactionType(playerid)) || IsAJobVehicle(vehicleid) || PlayerData[playerid][pCarKeys] == carid) // line 28644
{
vehiclemodel = GetVehicleModel(vehicleid);
switch (GetEngineStatus(vehicleid))
{
case false:
{
SetEngineStatus(vehicleid, true);
ShowPlayerFooter(playerid, "You have ~g~started~w~ the engine!");
SendNearbyMessage(playerid, 30.0, COLOR_PURPLE, "** %s inserts the key into the ignition and starts the engine of the %s.", ReturnName(playerid, 0), ReturnVehicleModelName(vehiclemodel));
}
case true:
{
SetEngineStatus(vehicleid, false);
ShowPlayerFooter(playerid, "You have ~r~stopped~w~ the engine!");
SendNearbyMessage(playerid, 30.0, COLOR_PURPLE, "** %s inserts the key into the ignition and stops the engine of the %s.", ReturnName(playerid, 0), ReturnVehicleModelName(vehiclemodel));
}
}
}
else SendErrorMessage(playerid, "You don't have the keys to this vehicle.");
return 1;
}