GetVehicleUpgradeOnSlot

From Multi Theft Auto: Wiki
Revision as of 01:46, 11 June 2006 by MrJax (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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->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