Scripting/Squirrel/Functions/Vehicle.Fix: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
(Created page with "== Syntax == <pre>bool vehicle.Fix()</pre> == Example == <pre>function onPlayerCommand( player, cmd, text ) if ( cmd == "fix" ) { local veh = player.Vehicle;...") |
(No difference)
|
Revision as of 09:31, 8 January 2015
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 );
}
}