Skip to main content

Items

CarKeys

  • Used to control the vehicle if using the item as a key
['carkey'] = { label = 'Carkey' }

alt text

Lockpick

  • Open and close the vehicle server-side

  • exports.mVehicle:lockpick() Opens/Closes the nearby vehicle to the player

['lockpick'] = {
label = 'Lockpick',
weight = 160,
decay = true,
server = {
export = 'mVehicle.lockpick'
}
},

Hotwire (WIP)

  • Starts/stops the engine
  • exports.mVehicle.hotwire() Only works if the player is in the driver's seat.
['hotwire'] = {
label = 'Cutter',
weight = 160,
server = {
export = 'mVehicle.hotwire'
}
},

Radio

  • Requires xSound

  • Install radio in a vehicle

  • exports.mVehicle.mradio() Installs the radio in a vehicle

['mradio'] = {
label = 'Vehicle Radio',
consume = 0,
server = {
export = 'mVehicle.mradio'
}
}

close

Fakeplate (WIP)

  • Sets a fake license plate to a vehicle in ownership

  • Returns an item with the original license plate that you can use to restore the plate

  • exports.mVehicle.fakeplate() Sets a fake license plate to a vehicle in ownership

['fakeplate'] = {
label = 'Fake Plate',
consume = 0,
server = {
export = 'mVehicle.fakeplate'
}
},