GetVehicleUpgradeOnSlot

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

Description

This function returns the current upgrade id on the specified vehicle's 'upgrade slot' An upgrade slot is a certain type of upgrade (eg: exhaust, spoiler), there are 17 slots (0 to 16).

Syntax

getVehicleUpgradeOnSlot ( vehicle, slot )

Required Arguments

  • vehicle: The vehicle whose upgrade you want to retrieve.
  • slot: The slot id of the upgrade.

Example

newcar = createVehicle ( 520, 1024, 1024, 1024 )
  outputChatBox ( "Upgrade on slot 0: " .. getVehicleUpgradeOnSlot ( newcar, 0 ) )
end

See Also