WarpPedIntoVehicle
From Multi Theft Auto: Wiki
This function is used to warp or force a ped into a vehicle. There are no animations involved when this happens.
Syntax
bool warpPedIntoVehicle ( ped thePed, vehicle theVehicle, [ int seat=0 ] )
Required Arguments
- thePed: The ped which you wish to force inside the vehicle
- theVehicle: The vehicle you wish to force the ped into
Optional Arguments
NOTE: When using optional arguments, you must supply all arguments before the one you wish to use. For more information on optional arguments, see Optional Arguments.
- seat: An integer representing the seat ID. 0 represents the driver, any higher represent passenger seats.
Returns
Returns true if the operation is successful, false otherwise.
Example
This example creates a vehicle and warps a ped inside immediately.
function setupForRace ( ) local RacerPed = createPed ( 252, 0, 0, 3 ) local RaceVehicle = createVehicle ( 411, 4, 0, 3 ) -- create a vehicle. warpPedIntoVehicle ( RacerPed, RaceVehicle ) -- warp the ped straight into the vehicle end addCommandHandler ( "startrace", setupForRace ) -- add a command to start race
See Also
- addPedClothes
- createPed
- doesPedHaveJetPack
- getPedAmmoInClip
- getPedArmor
- getPedClothes
- getPedContactElement
- getPedFightingStyle
- getPedGravity
- getPedMoveState
- getPedOccupiedVehicle
- getPedOccupiedVehicleSeat
- getPedRotation
- getPedSkin
- getPedStat
- getPedTarget
- getPedTotalAmmo
- getPedWeapon
- getPedWeaponSlot
- getValidPedModels
- givePedJetPack
- isPedChoking
- isPedDead
- isPedDoingGangDriveby
- isPedDucked
- isPedFrozen
- isPedHeadless
- isPedInVehicle
- isPedInWater
- isPedOnFire
- isPedOnGround
- killPed
- reloadPedWeapon
- removePedClothes
- removePedFromVehicle
- removePedJetPack
- setPedAnimation