GetVehicleUpgradeOnSlot

From Multi Theft Auto: Wiki
Revision as of 11:19, 13 August 2007 by Norby89 (talk | contribs) (→‎Example)
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

Click to collapse [-]
Server

This example prints the name and upgrades on each slot of an entered vehicle to the chat.

function scriptOnPlayerEnterVehicle ( theVehicle, seat, jacked )
  for i=0, 16 do
    local upgrade = getVehicleUpgradeOnSlot ( i )
    if ( upgrade ) then
      tputChatBox ( getVehicleUpgradeSlotName ( i ) .. ": " .. upgrade)
    end
  end
end
addEventHandler ( "onPlayerEnterVehicle", getRootElement(), scriptOnPlayerEnterVehicle )
end

See Also