Scripting/Squirrel/Functions/Vehicle.Fix: Difference between revisions

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
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;...")
 
Line 4: Line 4:
== Example ==
== Example ==
<pre>function onPlayerCommand( player, cmd, text )
<pre>function onPlayerCommand( player, cmd, text )
{
if ( cmd == "fix" )
if ( cmd == "fix" )
{
{

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 );
	}
}