GetPedContactElement

From Multi Theft Auto: Wiki
Revision as of 20:00, 25 May 2008 by Arc (talk | contribs)
Jump to navigation Jump to search

This function detects the element a ped is standing on. This can be a vehicle or an object.

Syntax

element getPedContactElement ( ped thePed )

Required Arguments

  • thePed: The ped of which you want to get the element he is standing on.

Returns

Returns an object or a vehicle if the ped is standing on one, false if he is touching none or an invalid element was passed.

Example

This clientside function outputs the name of the vehicle the specified player is standing on, or a message saying he isn't on one.

function outputContactVehicleMessage ( thePlayer )
    local elementStandingOn = getPedContactElement( thePlayer )
    if elementStandingOn ~= false and getElementType( elementStandingOn ) == "vehicle" then
        local vehicleName = getVehicleName( elementStandingOn )
        outputChatBox( "The player is standing on a " .. vehicleName .. "." )
    else
        outputChatBox( "The player isn't standing on any vehicle." )
    end
end

See Also