detectar gente en el auto
#2

esta funcion deberia funcionar bien:

pawn Код:
PlayerVehicleHasPassengers(playerid)
{
    if(!IsPlayerInAnyVehicle(playerid))return -1;
    if(GetPlayerState(playerid) != PLAYER_STATE_DRIVER)return -1;
    new count;
    for(new i, p=GetMaxPlayers(); i<p; i++)
        if(IsPlayerConnected(i) && playerid != i && IsPlayerInVehicle(i, GetPlayerVehicleID(playerid)))
            count++;
    if(count)return 1;
    return 0;
}
Reply


Messages In This Thread
detectar gente en el auto - by ValenRatti - 21.02.2012, 23:23
Respuesta: detectar gente en el auto - by TheChaoz - 21.02.2012, 23:34
Respuesta: detectar gente en el auto - by ValenRatti - 21.02.2012, 23:39
Respuesta: detectar gente en el auto - by TheChaoz - 21.02.2012, 23:43
Re: detectar gente en el auto - by digman - 21.02.2012, 23:47
Respuesta: detectar gente en el auto - by ValenRatti - 21.02.2012, 23:49
Respuesta: detectar gente en el auto - by TheChaoz - 22.02.2012, 00:18
Respuesta: detectar gente en el auto - by ValenRatti - 22.02.2012, 02:30

Forum Jump:


Users browsing this thread: 2 Guest(s)