removePedFromVehicle | Multi Theft Auto: Wiki Skip to content

removePedFromVehicle

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function removes a ped from a vehicle immediately. This works for drivers and passengers. Note that this removes the ped from the vehicle and puts him in the exact position where the command was initiated.

Syntax

removePedFromVehicle ( )

Code Examples

server

Small example to show how to remove a ped from any vehicle it's in.

function setupForRace( )
RacerPed = createPed( 252, 0, 0, 3 ) -- create a ped into the variable "RacerPed"
local RaceVehicle = createVehicle( 411, 4, 0, 3 ) -- create a vehicle.
warpPedIntoVehicle( RacerPed, RaceVehicle ) -- warp the ped straight into the vehicle
setTimer( removeThePed, 5000, 1 ) -- Setup a timer which will remove the ped from the vehicle after 5 seconds.
end
addCommandHandler( "startrace", setupForRace ) -- add a command to start race
function removeThePed( )
removePedFromVehicle( RacerPed ) -- Removes the ped from any vehicle.
end

See Also