Unlock car when driver leaves.
#2

pawn Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
    if(oldstate == PLAYER_STATE_DRIVER && newstate == PLAYER_STATE_ONFOOT)
    {
        new vid = GetPlayerVehicleID(playerid);
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            SetVehicleParamsForPlayer(vid, i, 0, 0);
        }
    }
    return 1;
}
Reply


Messages In This Thread
Unlock car when driver leaves. - by InActtive™ - 13.01.2013, 04:46
Re: Unlock car when driver leaves. - by mineralo - 13.01.2013, 06:50
Re: Unlock car when driver leaves. - by ThePhenix - 13.01.2013, 06:53
Re: Unlock car when driver leaves. - by Threshold - 13.01.2013, 07:10
Re: Unlock car when driver leaves. - by InActtive™ - 13.01.2013, 21:35

Forum Jump:


Users browsing this thread: 1 Guest(s)