SA-MP Forums Archive
Whats wrong? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Whats wrong? (/showthread.php?tid=216293)



Whats wrong? - BizzyD - 25.01.2011

SOLVED!

pawn Код:
CODE DELETED!



Re: Whats wrong? - Tomejus - 25.01.2011

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.


Re: Whats wrong? - BizzyD - 25.01.2011

dosent work :S


Re: Whats wrong? - BizzyD - 25.01.2011

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

and it still dosent work.


Re: Whats wrong? - BizzyD - 25.01.2011

Anybody knows why?


Re: Whats wrong? - ricardo178 - 25.01.2011

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


Re: Whats wrong? - wizzi - 25.01.2011

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 ...


Re: Whats wrong? - BizzyD - 25.01.2011

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.


Re: Whats wrong? - ricardo178 - 25.01.2011

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


Re: Whats wrong? - BizzyD - 25.01.2011

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.