SA-MP Forums Archive
Last vehicle id ? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Last vehicle id ? (/showthread.php?tid=644588)



Last vehicle id ? - Maky184 - 10.11.2017

How to get player last vehicle id ?


Re: Last vehicle id ? - TrueThing - 10.11.2017

Код:
new LastVehID[MAX_PLAYERS];
public OnPlayerStateChange(playerid,oldstate,newstate)
{
	if(newstate == PLAYER_STATE_DRIVER || newstate == PLAYER_STATE_PASSENGER)
	{
		LastVehID[playerid] = GetPlayerVehicleID(playerid);
	}
}