SetVehicleRespawnRotation: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ {{Server function}} {{New feature/item|3.0156|1.5.5|14280| This function sets the rotation the vehicle will respawn to. }} ==Syntax== <syntaxhighlight lang="lua">bo...")
 
 
Line 10: Line 10:
===Required Arguments===
===Required Arguments===
*'''theVehicle''': The [[vehicle]] you wish to change the respawn position of.
*'''theVehicle''': The [[vehicle]] you wish to change the respawn position of.
* '''rx''': A [[float]] representing the rotation about the X axis in Degrees.
* '''rx''': A [[float]] representing the rotation about the X axis in degrees.
* '''ry''': A [[float]] representing the rotation about the Y axis in Degrees.
* '''ry''': A [[float]] representing the rotation about the Y axis in degrees.
* '''rz''': A [[float]] representing the rotation about the Z axis in Degrees.
* '''rz''': A [[float]] representing the rotation about the Z axis in degrees.


==Returns==
==Returns==

Latest revision as of 10:44, 6 September 2018

This function sets the rotation the vehicle will respawn to.

Syntax

bool setVehicleRespawnRotation ( vehicle theVehicle, float rx, float ry, float rz )

OOP Syntax Help! I don't understand this!

Method: vehicle:setRespawnRotation(...)
Variable: .respawnRotation


Required Arguments

  • theVehicle: The vehicle you wish to change the respawn position of.
  • rx: A float representing the rotation about the X axis in degrees.
  • ry: A float representing the rotation about the Y axis in degrees.
  • rz: A float representing the rotation about the Z axis in degrees.

Returns

Returns true if the vehicle respawn rotation was set successfully, false otherwise.

Example

This example creates a vehicle and changes its respawn rotation.

local vehicle = createVehicle ( 400, 1, 1, 1 ) -- create us a new vehicle
if ( vehicle ) then
    setVehicleRespawnRotation ( vehicle, 10, 10, 10 ) -- tell the server to respawn the vehicle with rotation (10,10,10)
end

See Also

Shared