Scripting/Squirrel/Functions/Vehicle.Fix

From Vice City Multiplayer
Revision as of 09:31, 8 January 2015 by MatheuS (talk | contribs) (Created page with "== Syntax == <pre>bool vehicle.Fix()</pre> == Example == <pre>function onPlayerCommand( player, cmd, text ) if ( cmd == "fix" ) { local veh = player.Vehicle;...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
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 );
	}
}