StartVehicleEngine: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
{{FuncParam|vehicle|Vehicle which engine you want to start}} | {{FuncParam|vehicle|Vehicle which engine you want to start}} | ||
{{FuncReturnValue| | {{FuncReturnValue|Returns '''true''' on success.}} | ||
== Example == | == Example == | ||
Line 20: | Line 20: | ||
AddCommand('engine', StartEngine) | AddCommand('engine', StartEngine) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
__EDIT_ME__ | __EDIT_ME__ |
Revision as of 11:03, 1 September 2020
Description
Used to start vehicle engine
Syntax
StartVehicleEngine(vehicle)
Parameters
- vehicle
Vehicle which engine you want to start
Return Value
- Returns true on success.
Example
function StartEngine(player)
local veh = GetPlayerVehicle(player)
if veh ~= 0 then
StartVehicleEngine(veh)
end
end
AddCommand('engine', StartEngine)
See also
__EDIT_ME__