GetGarageSize: Difference between revisions
Jump to navigation
Jump to search
OpenIDUser32 (talk | contribs) No edit summary |
|||
Line 16: | Line 16: | ||
==Example== | ==Example== | ||
<section name="Client" class="client" show="true"> | <section name="Client" class="client" show="true"> | ||
This example adds the command /garagesize <garage ID> | |||
<syntaxhighlight lang="lua"> | |||
addCommandHandler ( "garagesize", | |||
function ( commandName, garageID ) | |||
local garageID = tonumber ( garageID ) -- We convert the garage ID string to a number. | |||
if ( garageID ) then -- We check if garage ID is valid. | |||
if ( garageID >= 0 and garageID < 50 ) then -- We check if the garage ID is 0 and lower than 50 ( there's only 49 garages ). | |||
local x, y, z = getGarageSize ( garageID ) | |||
if ( x and y and z ) then -- If x and y and z is valid. | |||
-- We output the returned values. | |||
outputChatBox ( "X: ".. x ) | |||
outputChatBox ( "Y: ".. y ) | |||
outputChatBox ( "Z: ".. z ) | |||
else | |||
outputChatBox ( "X, Y, Z values not valid" ) | |||
end | |||
else | |||
outputChatBox ( "Garage ID must be from 0 to 49." ) | |||
end | |||
else | |||
outputChatBox ( "You must write a garage ID" ) | |||
end | |||
end | |||
) | |||
</syntaxhighlight> | |||
</section> | </section> | ||
==See Also== | ==See Also== | ||
{{Client world functions}} | {{Client world functions}} |
Revision as of 23:50, 26 March 2012
This function outputs the size of garage.
Syntax
float, float, float getGarageSize ( int garageID )
Required Arguments
- garageID: The garage ID that represents the garage door that is being checked.
Returns
Returns three floats indicating the size of the garage.
Example
Click to collapse [-]
ClientThis example adds the command /garagesize <garage ID>
addCommandHandler ( "garagesize", function ( commandName, garageID ) local garageID = tonumber ( garageID ) -- We convert the garage ID string to a number. if ( garageID ) then -- We check if garage ID is valid. if ( garageID >= 0 and garageID < 50 ) then -- We check if the garage ID is 0 and lower than 50 ( there's only 49 garages ). local x, y, z = getGarageSize ( garageID ) if ( x and y and z ) then -- If x and y and z is valid. -- We output the returned values. outputChatBox ( "X: ".. x ) outputChatBox ( "Y: ".. y ) outputChatBox ( "Z: ".. z ) else outputChatBox ( "X, Y, Z values not valid" ) end else outputChatBox ( "Garage ID must be from 0 to 49." ) end else outputChatBox ( "You must write a garage ID" ) end end )
See Also
- createSWATRope
- getBirdsEnabled
- getCoronaReflectionsEnabled
- getGarageBoundingBox
- getGaragePosition
- getGarageSize
- getGroundPosition
- getInteriorFurnitureEnabled
- getNearClipDistance
- getPedsLODDistance
- getRoofPosition
- getScreenFromWorldPosition
- getVehiclesLODDistance
- getWorldFromScreenPosition
- isAmbientSoundEnabled
- isLineOfSightClear
- isWorldSoundEnabled
- processLineOfSight
- resetAmbientSounds
- resetBlurLevel
- resetColorFilter
- resetCoronaReflectionsEnabled
- resetNearClipDistance
- resetPedsLODDistance
- resetVehiclesLODDistance
- resetWorldSounds
- setAmbientSoundEnabled
- setBirdsEnabled
- setColorFilter
- setCoronaReflectionsEnabled
- setInteriorFurnitureEnabled
- setInteriorSoundsEnabled
- setNearClipDistance
- setPedsLODDistance
- setVehiclesLODDistance
- setWorldSoundEnabled
- testLineAgainstWater
- areTrafficLightsLocked
- getAircraftMaxHeight
- getAircraftMaxVelocity
- getCloudsEnabled
- getFarClipDistance
- getFogDistance
- getGameSpeed
- getGravity
- getHeatHaze
- getInteriorSoundsEnabled
- getJetpackMaxHeight
- getMinuteDuration
- getMoonSize
- getOcclusionsEnabled
- getRainLevel
- getSunColor
- getSunSize
- getTime
- getTrafficLightState
- getWeather
- getWindVelocity
- getSkyGradient
- getPlayerBlurLevel
- getZoneName
- isGarageOpen
- removeWorldModel
- resetFarClipDistance
- resetFogDistance
- resetHeatHaze
- resetMoonSize
- resetRainLevel
- resetSkyGradient
- resetSunColor
- resetSunSize
- resetWindVelocity
- restoreAllWorldModels
- restoreWorldModel
- setAircraftMaxHeight
- setAircraftMaxVelocity
- setCloudsEnabled
- setFarClipDistance
- setFogDistance
- setGameSpeed
- setGarageOpen
- setGravity
- setHeatHaze
- setInteriorSoundsEnabled
- setMinuteDuration
- setMoonSize
- setOcclusionsEnabled
- setRainLevel
- setSkyGradient
- setSunColor
- setSunSize
- setTime
- setTrafficLightState
- setTrafficLightsLocked
- setWeather
- setWeatherBlended
- setWindVelocity
- setJetpackMaxHeight
- setPlayerBlurLevel