I can not get in the car
#6

Use OnPlayerStateChange and RemovePlayerFromVehicle.

Код:
public OnPlayerStateChange(playerid, newstate, oldstate)
{
	if (newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER)
	{
		new idcar = GetPlayerVehicleID(playerid); 
	    if(IsGovermentCar(idcar)) 
	    { 
	      	if(GetPVarInt(playerid, "Member") == 3) 
	     	{ 
	     		SendClientMessage(playerid, COLOR_WHITE, "Test"); 
	   		} 
	        else 
	        { 
	            SendClientMessage(playerid, COLOR_WHITE, "Nu esti membru al guvernului !"); 
	            RemovePlayerFromVehicle(playerid);
	        } 
	    }
	}
return 1;
}
Reply


Messages In This Thread
I can not get in the car - by radiobizza - 07.03.2015, 18:24
Re: I can not get in the car - by X337 - 08.03.2015, 03:18
Re: I can not get in the car - by radiobizza - 08.03.2015, 16:27
Re: I can not get in the car - by Zonoya - 08.03.2015, 16:51
Re: I can not get in the car - by radiobizza - 10.03.2015, 21:40
Re: I can not get in the car - by Evocator - 10.03.2015, 22:09
Re: I can not get in the car - by radiobizza - 19.03.2015, 12:24
AW: Re: I can not get in the car - by Kaliber - 19.03.2015, 12:26

Forum Jump:


Users browsing this thread: 1 Guest(s)