SetVehiclePos
From SA-MP Wiki
Description:
Set a vehicle's position
(vehicleid, Float:x, Float:y, Float:z)
vehicleid | Vehicle ID that you want set new position. |
Float:x | The X coordinate to position the vehicle at. |
Float:y | The Y coordinate to position the vehicle at. |
Float:z | The Z coordinate to position the vehicle at. |
Return Values:
- 1: The function executed successfully.
- 0: The function failed to execute. The vehicle specified does not exist.
// Put the player's vehicle at the coordinates 0, 0, 3 (center of SA) new vehicleid = GetPlayerVehicleID(playerid); SetVehiclePos(vehicleid, 0, 0, 3);
Related Functions
The following functions may be useful, as they are related to this function in one way or another.
- SetPlayerPos: Set a player's position.
- GetVehiclePos: Get the position of a vehicle.
- SetVehicleZAngle: Set the direction of a vehicle.