GetVehicleUpgrades: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (root -> getRootElement())
Line 21: Line 21:
   end
   end
end
end
addEventHandler ( "onPlayerEnterVehicle", root, scriptOnPlayerEnterVehicle )
addEventHandler ( "onPlayerEnterVehicle", getRootElement(), scriptOnPlayerEnterVehicle )
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{Vehicle_functions}}
{{Vehicle_functions}}

Revision as of 13:30, 30 July 2007

This function returns a table of all the upgrades on a specifed vehicle.

Syntax

table getVehicleUpgrades ( vehicle theVehicle )

Required Arguments

  • theVehicle: The vehicle you wish to retrieve the upgrades of.

Returns

Returns a table of all the upgrades on each slot of a vehicle, which may be empty, or false if a valid vehicle is not passed.

Example

function scriptOnPlayerEnterVehicle ( invehicle, seat, jacked )
  upgrades = getVehicleUpgrades ( invehicle )
  for upgradeKey, upgradeValue in ipairs ( upgrades ) do
    outputChatBox ( getVehicleUpgradeSlotName ( upgradeKey - 1 ) .. ": " .. upgradeValue )
  end
end
addEventHandler ( "onPlayerEnterVehicle", getRootElement(), scriptOnPlayerEnterVehicle )

See Also