Whats wrong?
#1

SOLVED!

pawn Код:
CODE DELETED!
Reply
#2

Try to check else if instead of 'if'. P.s use boolean variable (bool) if u only use the variable in here it may be better.
Reply
#3

dosent work :S
Reply
#4

this is my new code:
pawn Код:
SOLVED - DELETE PLZ

and it still dosent work.
Reply
#5

Anybody knows why?
Reply
#6

Quote:
Originally Posted by AlexzzPro
Посмотреть сообщение
this is my new code:
pawn Код:
if(strcmp(cmd, "/engine", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(IsPlayerInAnyVehicle(playerid))
            {
                if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
                {
                    return 1;
                }
                if(engineon[playerid] == 0)
                {
                    new vid = GetPlayerVehicleID(playerid);
                    if(vid != INVALID_VEHICLE_ID) {
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "*%s turns the ignition and starts the vehicle.", sendername);
                    ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
                    SetVehicleParamsEx(vid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
                    SendClientMessage(playerid, COLOR_YELLOW, " Your vehicle started succesfully!");
                    engineon[playerid] = 1;
                    return 1;
            }
            else if (engineon[playerid] == 1)
            {
                GetPlayerName(playerid, sendername, sizeof(sendername));
                format(string, sizeof(string), "*%s turns the ignition and turns off the vehicle", sendername);
                ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                if(vid != INVALID_VEHICLE_ID) {
                GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
                SetVehicleParamsEx(vid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
                engineon[playerid] = 0;
                }
            }
        }
    }
 }
}

and it still dosent work.
I am not sure but try this:


pawn Код:
if(strcmp(cmd, "/engine", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(IsPlayerInAnyVehicle(playerid))
            {
                if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
                {
                    return 1;
                }
                if(engineon[playerid] == 0)
                {
                    new vid = GetPlayerVehicleID(playerid);
                    if(vid != INVALID_VEHICLE_ID) {
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "*%s turns the ignition and starts the vehicle.", sendername);
                    ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
                    SetVehicleParamsEx(vid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
                    SendClientMessage(playerid, COLOR_YELLOW, " Your vehicle started succesfully!");
                    engineon[playerid] = 1;
                    return 1;
            }
            else if (engineoff[playerid] == 1)
            {
                GetPlayerName(playerid, sendername, sizeof(sendername));
                format(string, sizeof(string), "*%s turns the ignition and turns off the vehicle", sendername);
                ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                if(vid != INVALID_VEHICLE_ID) {
                GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
                SetVehicleParamsEx(vid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
                engineon[playerid] = 0;
                }
            }
        }
    }
 }
}
If alried don't work try this:


pawn Код:
if(strcmp(cmd, "/engine", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(IsPlayerInAnyVehicle(playerid))
            {
                if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
                {
                    return 1;
                }
                if(engineon[playerid] == 0)
                {
                    new vid = GetPlayerVehicleID(playerid);
                    if(vid != INVALID_VEHICLE_ID) {
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "*%s turns the ignition and starts the vehicle.", sendername);
                    ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
                    SetVehicleParamsEx(vid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
                    SendClientMessage(playerid, COLOR_YELLOW, " Your vehicle started succesfully!");
                    engineon[playerid] = 1;
                    return 1;
            }
            else if (engineoff[playerid] == 0)
            {
                GetPlayerName(playerid, sendername, sizeof(sendername));
                format(string, sizeof(string), "*%s turns the ignition and turns off the vehicle", sendername);
                ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                if(vid != INVALID_VEHICLE_ID) {
                GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
                SetVehicleParamsEx(vid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
                engineon[playerid] = 0;
                }
            }
        }
    }
 }
}
if continue dont working try this:

pawn Код:
if(strcmp(cmd, "/engine", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(IsPlayerInAnyVehicle(playerid))
            {
                if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
                {
                    return 1;
                }
                if(engineon[playerid] == 0)
                {
                    new vid = GetPlayerVehicleID(playerid);
                    if(vid != INVALID_VEHICLE_ID) {
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "*%s turns the ignition and starts the vehicle.", sendername);
                    ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
                    SetVehicleParamsEx(vid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
                    SendClientMessage(playerid, COLOR_YELLOW, " Your vehicle started succesfully!");
                    engineon[playerid] = 1;
                    return 1;
            }
            else if (engineon[playerid] == 0)
            {
                GetPlayerName(playerid, sendername, sizeof(sendername));
                format(string, sizeof(string), "*%s turns the ignition and turns off the vehicle", sendername);
                ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                if(vid != INVALID_VEHICLE_ID) {
                GetVehicleParamsEx(vid,engine,lights,alarm,doors,bonnet,boot,objective);
                SetVehicleParamsEx(vid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
                engineon[playerid] = 0;
                }
            }
        }
    }
 }
}
If it dont work too i dont know
Reply
#7

pawn Код:
if(!strcmp(cmd, "/engine", true))
    {
        if(IsPlayerConnected(playerid))
        {
            if(IsPlayerInAnyVehicle(playerid))
            {
                if(!engineOn[GetPlayerVehicleID(playerid)])
                {
                    if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
                    {
                        return 1;
                    }
                    if(IsAnOwnableCar(idcar))
                    {
                        if(PlayerInfo[playerid][pPcarkey] == idcar) { }
                        else if(PlayerInfo[playerid][pPcarkey2] == idcar) { }
                        else if(PlayerInfo[playerid][pPcarkey3] == idcar) { }
                        else { return 1; }
                    }
                    if(pveh == 510 || pveh == 462 || pveh == 481 || pveh == 509)
                    {
                        return 1;
                    }
                    if(idcar == 59 || idcar == 60)
                    {
                        return 1;
                    }
                    if(idcar >= 135 && idcar <= 154)
                    {
                        if(HireCar[playerid] != idcar)
                        {
                            return 1;
                        }
                    }
                    if(IsAPlane(idcar))
                    {
                        return 1;
                    }
                    if(IsAHarvest(idcar))
                    {
                        return 1;
                    }
                    if(IsADrugHarvest(idcar))
                    {
                        return 1;
                    }
                    if(IsASweeper(idcar))
                    {
                        return 1;
                    }
                    if(gEngine[playerid] == 1) { return 1; }

                    new playerveh = GetPlayerVehicleID(playerid);
                    PutPlayerInVehicle(playerid, playerveh, 0);
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "* %s spins a key and tries to start vehicle engine.", sendername);
                    ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    SetTimerEx("StartingTheVehicle",3500,0,"i",playerid);
                    GameTextForPlayer(playerid, "~w~Starting vehicle engine...",3500,3);
                    gEngine[playerid] = 1;
                    return 1;
                }
                if(engineOn[GetPlayerVehicleID(playerid)])
                {
                    if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
                    {
                        return 1;
                    }
                    if(IsAnOwnableCar(idcar))
                    {
                        if(PlayerInfo[playerid][pPcarkey] == idcar) { }
                        else if(PlayerInfo[playerid][pPcarkey2] == idcar) { }
                        else if(PlayerInfo[playerid][pPcarkey3] == idcar) { }
                        else { return 1; }
                    }
                    if(pveh == 510 || pveh == 462 || pveh == 481 || pveh == 509)
                    {
                        return 1;
                    }
                    if(idcar == 59 || idcar == 60)
                    {
                        return 1;
                    }
                    if(idcar >= 135 && idcar <= 154)
                    {
                        if(HireCar[playerid] != idcar)
                        {
                            return 1;
                        }
                    }
                    if(IsAHarvest(idcar))
                    {
                        return 1;
                    }
                    if(IsADrugHarvest(idcar))
                    {
                        return 1;
                    }
                    if(IsAPlane(idcar))
                    {
                        return 1;
                    }
                    if(IsASweeper(idcar))
                    {
                        return 1;
                    }
                    engineOn[GetPlayerVehicleID(playerid)] = false;
                    //RemovePlayerFromVehicle(playerid);
                    TogglePlayerControllable(playerid, 0);
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "* %s spins the vehicle key and turns off the engine.", sendername);
                    ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    gEngine[playerid] = 0;
                    return 1;
                }
            }
        }
        return 1;
    }
try that ...
Reply
#8

Quote:
Originally Posted by wizzi
Посмотреть сообщение
pawn Код:
if(!strcmp(cmd, "/engine", true))
    {
        if(IsPlayerConnected(playerid))
        {
            if(IsPlayerInAnyVehicle(playerid))
            {
                if(!engineOn[GetPlayerVehicleID(playerid)])
                {
                    if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
                    {
                        return 1;
                    }
                    if(IsAnOwnableCar(idcar))
                    {
                        if(PlayerInfo[playerid][pPcarkey] == idcar) { }
                        else if(PlayerInfo[playerid][pPcarkey2] == idcar) { }
                        else if(PlayerInfo[playerid][pPcarkey3] == idcar) { }
                        else { return 1; }
                    }
                    if(pveh == 510 || pveh == 462 || pveh == 481 || pveh == 509)
                    {
                        return 1;
                    }
                    if(idcar == 59 || idcar == 60)
                    {
                        return 1;
                    }
                    if(idcar >= 135 && idcar <= 154)
                    {
                        if(HireCar[playerid] != idcar)
                        {
                            return 1;
                        }
                    }
                    if(IsAPlane(idcar))
                    {
                        return 1;
                    }
                    if(IsAHarvest(idcar))
                    {
                        return 1;
                    }
                    if(IsADrugHarvest(idcar))
                    {
                        return 1;
                    }
                    if(IsASweeper(idcar))
                    {
                        return 1;
                    }
                    if(gEngine[playerid] == 1) { return 1; }

                    new playerveh = GetPlayerVehicleID(playerid);
                    PutPlayerInVehicle(playerid, playerveh, 0);
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "* %s spins a key and tries to start vehicle engine.", sendername);
                    ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    SetTimerEx("StartingTheVehicle",3500,0,"i",playerid);
                    GameTextForPlayer(playerid, "~w~Starting vehicle engine...",3500,3);
                    gEngine[playerid] = 1;
                    return 1;
                }
                if(engineOn[GetPlayerVehicleID(playerid)])
                {
                    if(GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
                    {
                        return 1;
                    }
                    if(IsAnOwnableCar(idcar))
                    {
                        if(PlayerInfo[playerid][pPcarkey] == idcar) { }
                        else if(PlayerInfo[playerid][pPcarkey2] == idcar) { }
                        else if(PlayerInfo[playerid][pPcarkey3] == idcar) { }
                        else { return 1; }
                    }
                    if(pveh == 510 || pveh == 462 || pveh == 481 || pveh == 509)
                    {
                        return 1;
                    }
                    if(idcar == 59 || idcar == 60)
                    {
                        return 1;
                    }
                    if(idcar >= 135 && idcar <= 154)
                    {
                        if(HireCar[playerid] != idcar)
                        {
                            return 1;
                        }
                    }
                    if(IsAHarvest(idcar))
                    {
                        return 1;
                    }
                    if(IsADrugHarvest(idcar))
                    {
                        return 1;
                    }
                    if(IsAPlane(idcar))
                    {
                        return 1;
                    }
                    if(IsASweeper(idcar))
                    {
                        return 1;
                    }
                    engineOn[GetPlayerVehicleID(playerid)] = false;
                    //RemovePlayerFromVehicle(playerid);
                    TogglePlayerControllable(playerid, 0);
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    format(string, sizeof(string), "* %s spins the vehicle key and turns off the engine.", sendername);
                    ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
                    gEngine[playerid] = 0;
                    return 1;
                }
            }
        }
        return 1;
    }
try that ...
I wont use that Totally different codes.
Reply
#9

Try the ones i gave you.... I am not sure if work or not...
Reply
#10

Quote:
Originally Posted by ricardo178
Посмотреть сообщение
Try the ones i gave you.... I am not sure if work or not...
they dont :S tried every single one of them.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)