Scripting/Squirrel/Functions/Vehicle.Fix
This wiki is using an old backup from 2020
Some information may be old/missing
Syntax
bool vehicle.Fix()
Example
function onPlayerCommand( player, cmd, text ) { if ( cmd == "fix" ) { local veh = player.Vehicle; if ( veh ) { MessagePlayer( "Your vehicle has been fixed.", player ); veh.Fix(); } else MessagePlayer( "You must be in the vehicle you want to fix.", player ); } }