how to cheack if someone in my vehicle
#2

Retrieve your vehicle's ID and compare it to everyone elses vehicle ID.

pawn Код:
new my_vehicle = GetPlayerVehicleID(playerid);

for (new i = 0; i != MAX_PLAYERS; ++i)
{
    if (GetPlayerVehicleID(i) == my_vehicle)
    {
        // Player with id stored in i is in your vehicle.
        break;
    }
}
Reply


Messages In This Thread
how to cheack if someone in my vehicle - by Gafsi - 27.12.2013, 02:18
Re: how to cheack if someone in my vehicle - by Miguel - 27.12.2013, 04:27

Forum Jump:


Users browsing this thread: 1 Guest(s)