GetVehicleController
Jump to navigation
Jump to search
This function is used to get the player in control of the specified vehicle.
Syntax
player getVehicleController ( vehicle theVehicle )
Required Arguments
- theVehicle: The vehicle you want to get the 'controller' of.
Returns
Returns a 'player' object, if there isn't a driver, it will search the 'trailer chain' for the front driver.
Example
This example does...
addEventHandler ( "onTrailerAttach", root, "onTrailerAttach" ) function onTrailerAttach ( trailer ) thePlayer = getVehicleController ( source ) -- get the controller of the towing vehicle if ( thePlayer ) then chat ( getClientName ( thePlayer ).. " attached a trailer" ) else chat ( "trailer attached" ) end end