CreateVehicle: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
 
(31 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Syntax ==
{{Info|Function|Server|1.0}}
<syntaxhighlight lang="Lua">
 
CreateVehicle(modelid, x, y, z [, heading])
{{FuncDescription|This function creates a vehicle at a desired location.
</syntaxhighlight>
'''Vehicles automatically respawn after 5 minutes. Use [[SetVehicleRespawnParams]] to control this behavior.'''}}
=== Parameters ===
 
modelid
{{FuncSyntax|CreateVehicle(modelid, x, y, z [, heading])}}
<div class="noprint" style="float:right;">
[[File:vehicle_spawn.gif]]
</div>
{{FuncParameters}}
{{FuncParam|modelid|The [[Vehicles|model identifier]] for which vehicle to spawn.}}
{{FuncParam|x, y, z|The location/coordinates of where this vehicle is going to spawn.}}
{{FuncParamOptional|heading|The direction (yaw axis) in which this vehicle is going to be positioned.}}


== Return Value ==
{{FuncReturnValue|Returns an identifier to the new vehicle. '''false''' on error.}}
On Success: Returns identifier to the new vehicle.
On Error: Returns false.


== Example ==
== Example ==
Line 18: Line 23:


model = tonumber(model)
model = tonumber(model)
if (model < 1 or model > 12) then
return AddPlayerChat(player, "Vehicle model "..model.." does not exist.")
end
if (PlayerData[player].vehicle ~= 0) then
DestroyVehicle(PlayerData[player].vehicle)
PlayerData[player].vehicle = 0
end


local x, y, z = GetPlayerLocation(player)
local x, y, z = GetPlayerLocation(player)
Line 36: Line 32:
end
end


PlayerData[player].vehicle = vehicle
SetVehicleLicensePlate(vehicle, "ONSET")
 
-- Do not change color of the taxi or police car
if (model ~= 2 and model ~= 3) then
--local color = RGB(math.random(1, 220), math.random(1, 220), math.random(1, 220))
--SetVehicleColor(vehicle, NiceColors[ math.random( #NiceColors ) ])
end
 
SetVehicleLicensePlate(vehicle, "HORIZON")
AttachVehicleNitro(vehicle, true)
AttachVehicleNitro(vehicle, true)


if (model == 8) then
if (model == 8) then
-- Ambulance
-- Set Ambulance blue color and license plate text
SetVehicleColor(vehicle, RGB(0.0, 60.0, 240.0))
SetVehicleColor(vehicle, RGB(0.0, 60.0, 240.0))
SetVehicleLicensePlate(vehicle, "EMS-02")
SetVehicleLicensePlate(vehicle, "EMS-02")
end
end


    -- Set us in the driver seat
SetPlayerInVehicle(player, vehicle)
SetPlayerInVehicle(player, vehicle)


Line 59: Line 48:
AddCommand("v", cmd_v)
AddCommand("v", cmd_v)
</syntaxhighlight>
</syntaxhighlight>
{{RelatedFunctions}}
{{VehicleFunctions}}

Latest revision as of 10:58, 4 November 2020

CreateVehicle

Type: Function
Context: Server
Introduced: v1.0

Description

This function creates a vehicle at a desired location. Vehicles automatically respawn after 5 minutes. Use SetVehicleRespawnParams to control this behavior.

Syntax

CreateVehicle(modelid, x, y, z [, heading])

Parameters

  • modelid
    The model identifier for which vehicle to spawn.
  • x, y, z
    The location/coordinates of where this vehicle is going to spawn.
  • heading (optional)
    The direction (yaw axis) in which this vehicle is going to be positioned.

Return Value

  • Returns an identifier to the new vehicle. false on error.

Example

function cmd_v(player, model)
	if (model == nil) then
		return AddPlayerChat(player, "Usage: /v <model>")
	end

	model = tonumber(model)

	local x, y, z = GetPlayerLocation(player)
	local h = GetPlayerHeading(player)

	local vehicle = CreateVehicle(model, x, y, z, h)
	if (vehicle == false) then
		return AddPlayerChat(player, "Failed to spawn your vehicle")
	end

	SetVehicleLicensePlate(vehicle, "ONSET")
	AttachVehicleNitro(vehicle, true)

	if (model == 8) then
		-- Set Ambulance blue color and license plate text
		SetVehicleColor(vehicle, RGB(0.0, 60.0, 240.0))
		SetVehicleLicensePlate(vehicle, "EMS-02")
	end

    -- Set us in the driver seat
	SetPlayerInVehicle(player, vehicle)

	AddPlayerChat(player, "Vehicle spawned! (New ID: "..vehicle..")")
end
AddCommand("v", cmd_v)

See also