SetVehicleRespawnRotation

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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