🎬
FDS Development
  • πŸ€Έβ€β™‚οΈGym Script
    • Setting up perk effects
    • Client exports
      • GetLivelloPerk
      • getEsercizio
      • GetPeso
      • OpenStats
  • πŸ“¨Post Box
    • Adding items
    • Configuration File
    • Setting up new stamps
    • Creating a New Post Box
  • ⏸️Pause Menu
  • πŸ’ΌBoss Menu
    • Installation and Configuration
    • Adding a new Boss Menu
    • esx_society and esx_addonaccount
    • Exports
      • Server
        • addMoney
        • removeMoney
        • getAccount
      • Client
        • GetBossOpen
        • GetCVOpen
        • GetApplicationsOpen
        • openCV
        • OpenBoss
        • OpenApplicationsMenuZone
  • 🏚️Ultra Motels
    • Adding a new motel
  • πŸ’²Ultra Banking
    • Installing and Setup
      • Setup Logs
    • Exports
      • Client
        • openBank
        • openAtm
      • Server
        • addAccountMoney
        • removeMoney
        • GetAccount
Powered by GitBook
On this page
  1. πŸ“¨Post Box

Adding items

PreviousPost BoxNextConfiguration File

Last updated 1 year ago

CtrlK

QBCore > shared > items.lua

letter = { name = 'letter', label = 'Letter', weight = 1000, type = 'item', image = 'letter.png', unique = false, useable = true, shouldClose = true, combinable = nil, description = 'Letter' }, 
sletter = { name = 'letter', label = 'Letter with Stamp', weight = 1000, type = 'item', image = 'sletter.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'Letter with stamp' }, 
postboxkey = { name = 'postboxkey', label = 'Post Box Key', weight = 1000, type = 'item', image = 'postboxkey.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'Post Box Key' },

ox_inventory > data > items.lua

['letter'] = {
	label = 'Letter',
},
['ssletter'] = {
	label = 'Letter With Stamp',
},
['postboxkey'] = {
	label = 'Postbox Key',
},