getVehicleWheelFrictionState | Multi Theft Auto: Wiki Skip to content

getVehicleWheelFrictionState

Client-side
Server-side
Shared

Manual Review Required

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


This function returns the current wheel friction state of the vehicle.

OOP Syntax Help! I don't understand this!

  • Method:vehicle:getWheelFrictionState(...)

Syntax

int getVehicleWheelFrictionState ( vehicle theVehicle, int wheel )
Required Arguments
  • theVehicle: The vehicle that you wish to get the wheel friction state.
  • wheel: The wheel you want to check. (0: front left, 1: rear left, 2: front right, 3: rear right)

Returns

  • int: value

Returns a int indicating the wheel friction state. This value can be:

Code Examples

shared

This example will show the friction state of each wheel of the player's current vehicle:

addEventHandler("onClientRender", root, function ()
local veh = getPedOccupiedVehicle (localPlayer)
if not veh then
return false
end
dxDrawRectangle (0, 0, 300, 140, tocolor (0, 0, 0, 150))
dxDrawText ("FRICTION FRONT LEFT = ".. getVehicleWheelFrictionState (veh, 0), 8, 10, 290, 40, tocolor (255, 255, 255), 1.5)
dxDrawText ("FRICTION FRONT RIGHT = ".. getVehicleWheelFrictionState (veh, 2), 8, 40, 290, 70, tocolor (255, 255, 255), 1.5)
dxDrawText ("FRICTION REAR LEFT = ".. getVehicleWheelFrictionState (veh, 1), 8, 70, 290, 100, tocolor (255, 255, 255), 1.5)
dxDrawText ("FRICTION REAR RIGHT = ".. getVehicleWheelFrictionState (veh, 3), 8, 100, 290, 130, tocolor (255, 255, 255), 1.5)
end)

See Also

Vehicle Functions