getModelHandling | Multi Theft Auto: Wiki Skip to content

getModelHandling

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 returns a table containing the handling data of the specified vehicle model.

Syntax

getModelHandling ( )

Code Examples

server
function getHandlings(thePlayer,commandName,id)
if id then
local getVehicleHandlings = getModelHandling(id)
for k in pairs (getVehicleHandlings) do
outputChatBox(tostring(k))
end
else return end
end
addCommandHandler("gethandling",getHandlings)

See Also

Vehicle Functions