18.05.2009, 18:52
How can I get a players seat ID like
I really need this
Thanks,
ArcticFox
Код:
0-driver, 1-co-driver, 2&3-passengers
Thanks,
ArcticFox
0-driver, 1-co-driver, 2&3-passengers
Originally Posted by FUNExtreme
You could use GetPlayerState for the driver.
|
Originally Posted by FUNExtreme
You could use GetPlayerState for the driver.
|
Originally Posted by FUNExtreme
I did some fast searching and it seems impossible. I'm not sure
|
Originally Posted by Don Correlli
Quote:
You can create new function like PutPlayerInVehicleEx in which you could store the seatid you have setted. Later you can get the stored seatid. |
OnPlayerEnterVehicle(blah)
{
return 0;
}
OnPlayerStateChange(blah)
{
if(newstate == PLAYER_STATE_DRIVING)
{
RemovePlayerFromVehicle(playerid);
return 1;
}
return 1;
}