Problems in command /engine
#1

I made a command to start and stop engine which was working fine until the day before. Suddenly, it became weird. It works only on the first car that I spawn. After that, it shows 'Unknown Command'.

PHP код:
CMD:engine(playeridparams[])
{
    new 
string[256];
    new 
enginelightsalarmdoorsbonnetbootobjective;
    new 
vehicleid GetPlayerVehicleID(playerid);
    if(
IsBicycle(vehicleid))
        return 
SendClientMessage(playerid0xE74C3CFF"You are not driving a vehicle with engine!");
    if(
GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
        return 
SendClientMessage(playerid0xE74C3CFF"You are not driving a vehicle!");
    
GetVehicleParamsEx(vehicleidenginelightsalarmdoorsbonnetbootobjective);
    if(
engine == 1)
    {
        
engine 0;
        
format(stringsizeof(string), "%s stops the engine of a %s."GetName(playerid), GetVehicleName(vehicleid));
        
SendClientMessage(playerid0xFF66FFAAstring);
        
RangeDetector(playerid30.0string0xFF66FFAA);
    }
    else
    {
        if(
Fuel[vehicleid] > 0)
        {
            
engine 1;
            
format(stringsizeof(string), "%s starts the engine of a %s."GetName(playerid), GetVehicleName(vehicleid));
            
SendClientMessage(playerid0xFF66FFAAstring);
            
RangeDetector(playerid30.0string0xFF66FFAA);
        }
        else
        {
            
SendClientMessage(playerid0xFF66FFAA"Your vehicle is out of fuel!");
        }
    }
    
SetVehicleParamsEx(vehicleidenginelightsalarmdoorsbonnetbootobjective);
    return 
1;

Reply


Messages In This Thread
Problems in command /engine - by JaskaranSingh - 02.04.2018, 12:18
Re: Problems in command /engine - by Sabur - 02.04.2018, 12:32
Re: Problems in command /engine - by JaskaranSingh - 02.04.2018, 12:52
Re: Problems in command /engine - by JaskaranSingh - 02.04.2018, 13:04

Forum Jump:


Users browsing this thread: 1 Guest(s)