WarpPedIntoVehicle: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 6: Line 6:


<div style="background: #FF7070; border: 3px solid #FF0000;">
<div style="background: #FF7070; border: 3px solid #FF0000;">
'''Attention:''' Using this function before using [[spawnPlayer]] can cause that this function will not work and returns '''false'''. </div>
'''Attention:''' If you used [[setElementPosition]] to spawn the [[ped]]/[[player]], this function will not work and returns '''false'''. </div>


==Syntax==  
==Syntax==  

Revision as of 11:37, 3 May 2013

This function is used to warp or force a ped into a vehicle. There are no animations involved when this happens.

Available client side from 1.3.1 (It will only work with client side vehicles and peds)

Attention: If you used setElementPosition to spawn the ped/player, this function will not work and returns false.

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 might need to 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