GetPedOccupiedVehicle

From Multi Theft Auto: Wiki
Revision as of 01:39, 22 January 2011 by EAi (talk | contribs)
Jump to navigation Jump to search

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

Syntax

vehicle getPedOccupiedVehicle ( ped thePed )

Required Arguments

  • thePed: The ped whose vehicle you're looking up.

Returns

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

Example

When a ped enters the 'getcarname' command and is currently in a vehicle, this example outputs the name of the vehicle.

function showVehicleName ( player )
   local theVehicle = getPedOccupiedVehicle ( player )
   if theVehicle then
      outputChatBox ( "Name of the Vehicle: " .. getVehicleName ( theVehicle ), player )
   else
      outputChatBox ( "You do not have a Vehicle!", player, 255, 0, 0, true )
   end
end
addCommandHandler ( "getcarname", showVehicleName )

See Also