getGarageBoundingBox | Multi Theft Auto: Wiki Skip to content

getGarageBoundingBox

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function outputs the bounding box of a garage.

Tip

You can use the useful function CreateGarageColShape to create the garage colshape.

Syntax

getGarageBoundingBox ( )

Code Examples

client

Checks if the player is inside the bounding box of the garage and outputs the result to the chat

function garageCheck ( command, garageID )
if not garageID then
return
end
local west, east, south, north = getGarageBoundingBox ( garageID ) --get the bounding box of the specified garage
local x, y, z = getElementPosition ( getLocalPlayer ( ) ) --get the position of the player
if x > west and x < east and y > south and y < north then --check if the player is inside the bounding box
outputChatBox ( "You are inside the garage" )
else
outputChatBox ( "You are outside the garage" )
end
end
addCommandHandler ( "garagecheck", garageCheck )

See Also

World Functions