GetPlayerOccupiedVehicle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Server client function}}
This function gets the [[vehicle]] that the player is currently in, if any.
This function gets the [[vehicle]] that the player is currently in, if any.



Revision as of 11:31, 7 August 2007

This function gets the vehicle that the player is currently in, if any.

Syntax

vehicle getPlayerOccupiedVehicle ( player thePlayer )

Required Arguments

  • thePlayer: The player whose vehicle you're looking up.

Returns

Returns the vehicle that the player is in, or false if the player is not in a vehicle or is an invalid player.

Example

This example outputs the vehicle name of the vehicle if the player is currently occupying one, when he enters the 'vehicleName' command.

function showVehicleName(player)
	local vehicle = getPlayerOccupiedVehicle(player)
	if (vehicle ~= false) then
		local vehicleName = getVehicleName(vehicle)
		outputChatBox("Vehicle name: "..vehicleName,player)
	end
end
addCommandHandler("vehicleName",showVehicleName)

See Also

Shared