GetTrainTrack: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (fix oop)
m (make something clearer)
Line 12: Line 12:


===Returns===
===Returns===
Returns an ''intenger'' which means the track of the train, ''false'' if there is problem with train element.
Returns an integer (whole number) that represents the train track, ''false'' if there is problem with train element.


==Example==
==Example==

Revision as of 01:24, 13 September 2015

Gets the track of a train

Syntax

int getTrainTrack ( vehicle train )

OOP Syntax Help! I don't understand this!

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


Required Arguments

  • train: the train of which to get the track.

Returns

Returns an integer (whole number) that represents the train track, false if there is problem with train element.

Example

addCommandHandler("getTrain",
function ()
	local thePlayer = getLocalPlayer()
	local theVehicle = getPedOccupiedVehicle(thePlayer)
	train = getTrainTrack(theVehicle)
	outputChatBox("Train Track is "..train)
end)

See Also