SA-MP Forums Archive
[HELP]IsPlayerInVehicle Please HELP! - 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: [HELP]IsPlayerInVehicle Please HELP! (/showthread.php?tid=102904)



[HELP]IsPlayerInVehicle Please HELP! - [NYRP]Mike. - 17.10.2009

Hey guys, i'm trying to do a simple IsPlayerInVehicle implimented into OnPlayerText, could you help me please

pawn Код:
new carid = GetPlayerVehicleID(playerid);
          new pveh = GetVehicleModel(GetPlayerVehicleID(playerid));
          if(IsABike(carid) || IsAOBike(carid) || IsAPizzabike(carid) || IsAPlane(carid) || IsABoat(carid) || IsASweeper(carid) || IsAHarvest(carid) || IsADrugHarvest(carid) || IsATank(carid) || pveh == 523 || pveh == 480 || pveh == 567 || pveh == 533 || pveh == 555 || pveh == 539 || pveh == 572 || pveh == 571 || pveh == 530 || pveh == 457 || pveh == 575 || pveh == 536 || pveh == 424)
          {
            if(AdminDuty[playerid] == 1)
                {
                    format(string, sizeof(string), "Stranger Says: %s", text);
                    ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
                }
                else
                {
                format(string, sizeof(string), "%s Says: %s", sendername, text);
                ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5);
                }
          }
I want
pawn Код:
if(IsABike(carid) || IsAOBike(carid) || IsAPizzabike(carid) || IsAPlane(carid) || IsABoat(carid) || IsASweeper(carid) || IsAHarvest(carid) || IsADrugHarvest(carid) || IsATank(carid) || pveh == 523 || pveh == 480 || pveh == 567 || pveh == 533 || pveh == 555 || pveh == 539 || pveh == 572 || pveh == 571 || pveh == 530 || pveh == 457 || pveh == 575 || pveh == 536 || pveh == 424)
to something like
pawn Код:
if(Playerinvehicle)
or something.

Thanks

-Mike.


Re: [HELP]IsPlayerInVehicle Please HELP! - MenaceX^ - 17.10.2009

Do a stock.


Re: [HELP]IsPlayerInVehicle Please HELP! - [NYRP]Mike. - 17.10.2009

Solved, thanks for the help!