SetTrainTrack

From Multi Theft Auto: Wiki
Revision as of 23:18, 12 September 2015 by Emiliano Castro (talk | contribs)
Jump to navigation Jump to search

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