SetTrainTrack: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
m (Little mistake)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Client function}}
{{New feature/item|3.0151|1.6|7485|
{{New feature/item|3.0160|1.6|7485|
Sets the track of a train
Sets the track of a train
}}
}}

Revision as of 23:39, 12 September 2015

Sets the track of a train

Syntax

bool setTrainTrack ( vehicle train, int track )

OOP Syntax Help! I don't understand this!

Method: vehicle:setTrack(...)
Variable: .track
Counterpart: setTrainTrack


Required Arguments

  • train: the train of which to set the track
  • track: the track where you want to set the train. It can be 1, 2 or 3.

Returns

Returns true if the track was set to the train, false otherwise.

Example

addCommandHandler("setTrain",
function (cmd,train)
	local thePlayer = getLocalPlayer()
	local theVehicle = getPedOccupiedVehicle(thePlayer)
	local cc = getElementModel(theVehicle)
		if cc == 449 or cc == 537 or cc == 538 or cc == 570 or cc == 569 or cc == 590 then
	setTrainTrack(theVehicle, train)
		end
end)

See Also