30.03.2012, 08:59
put this OnPlayerStateChange
if player is not in tutorial he will remove from vehicle.
pawn Код:
if(newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER)
{
if(IsOnTutorial[playerid] == 0) RemovePlayerFromVehicle(playerid);
//other codes
}