Difference between revisions of "PutPlayerInVehicle"

From Nomad DB
(Created page with "Lets the specified Pawn ride a specific vehicle. == Syntax == <syntaxhighlight lang="lua"> PutPlayerInVehicle(pawnId, vehicleId) </syntaxhighlight> * '''pawnId''' (string): [...")
 
Line 20: Line 20:
 
* [[Pawn]]
 
* [[Pawn]]
  
[[Category:WD2 Lua]] [[Category: WD2 Entity]] [[Category: WD2 Player]]
+
[[Category:WD2 Lua]] [[Category: WD2 Entity]] [[Category: WD2 Player]] [[Category: WD2 Vehicle]]

Revision as of 14:54, 15 April 2020

Lets the specified Pawn ride a specific vehicle.

Syntax

PutPlayerInVehicle(pawnId, vehicleId)
  • pawnId (string): ID of the Pawn that should be put into the specified vehicle
  • vehicleId (string): ID of the vehicle the specified pawn should be put into

Example

local car = SpawnEntityFromArchetype("{4bfd48bb-003b-4fa2-9f42-a6aa2732609e}", 0, 0, 65, 0, 0, 0)
PutPlayerInVehicle(GetLocalPlayerEntityId(), car)

Related Pages