GetCameraInterior

From Multi Theft Auto: Wiki
Revision as of 02:47, 31 May 2010 by Ca11um (talk | contribs) (Removed page from "Needs example" category.)
Jump to navigation Jump to search

Returns the interior of the local camera (independent of the interior of the local player).

Syntax

Click to collapse [-]
Server
int getCameraInterior ( player thePlayer )

Required Arguments

thePlayer: the player whose camera interior you want to check.

Click to collapse [-]
Client
int getCameraInterior ( )

Required Arguments

None

Returns

Returns an integer indicating the camera's interior, false if the argument is invalid.

Example

This example outputs the interior the player's camera is in.

Click to collapse [-]
Server
function camInt(thePlayer,command)
	local interior = getCameraInterior(thePlayer)
	outputChatBox("The camera is in interior "..interior,thePlayer,255,255,0)
end
addCommandHandler("camera",camInt)

See Also