Master Mind Development
DiscordTebexGithub
  • ๐Ÿ’ฐPaid Release
    • ๐Ÿ“ฆAirdrop
      • โคต๏ธInstallation
        • ๐Ÿ‘œAdd Item
      • ๐Ÿ“’Configuration
        • ๐Ÿ’ชCore
        • ๐Ÿ‘œInventory
        • ๐Ÿ‘€Target
        • ๐ŸŽฎMinigame
      • ๐Ÿ‘จโ€๐Ÿ’ปCustomization
        • ๐Ÿ”ฅExplosive Crate
        • ๐Ÿ“งMail
    • ๐ŸŽ๏ธDealership
      • โคต๏ธInstallation
        • ๐Ÿ‘œAdd Item
        • ๐Ÿ‘จโ€๐Ÿ’ปInitializing/Configuration
        • ๐Ÿ“ธGenerate Vehicle Images
      • ๐Ÿ“’Configuration
        • ๐Ÿ’ชCore
        • ๐Ÿ‘œInventory
        • ๐Ÿ‘€Target
        • ๐Ÿ““Miscellaneous
      • ๐ŸฌHow to Add Custom Shop
      • โš ๏ธImportant Notes
  • ๐ŸŽFREE RELEASE
    • ๐Ÿ“ปRadio
      • โคต๏ธInsallation
        • ๐ŸŒ‰Bridge Setup
        • ๐Ÿ‘œAdd Item
        • ๐Ÿ‘จโ€๐Ÿ’ปHow to build svelte ui file?
      • ๐Ÿ“’Configuration
        • ๐Ÿ—ผJammer System
        • ๐Ÿ”‹Battery
        • ๐Ÿ“ปChannel Name
        • ๐Ÿ“ปRestricted Radio Channel
      • ๐Ÿ‘จโ€๐Ÿ’ปExports
      • ๐Ÿ’ปBranch
    • ๐Ÿ”‘Car Keys
      • โคต๏ธInstallation
        • ๐Ÿ‘œAdd Item
      • ๐Ÿ“’Configuration
        • ๐Ÿ’ชCore
        • ๐Ÿ‘œInventory
        • ๐Ÿ‘œStack Key
      • ๐Ÿ‘จโ€๐Ÿ’ปUseful Exports
Powered by GitBook
On this page
  • QB Based Inventory
  • OX Inventory
  • Images
  1. FREE RELEASE
  2. Radio
  3. Insallation

Add Item

Add this item to your inventory Script

QB Based Inventory

If you are using qb based inventory then Navigate to qb-core/shared/items.lua and add this:

["radio"] = {
        ["name"] = "radio",
        ["label"] = "Radio",
        ["weight"] = 100,
        ["type"] = "item",
        ["image"] = "radio.png",
        ["unique"] = true,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "A communication system for person"
},
["jammer"] = {
        ["name"] = "jammer",
        ["label"] = "Radio Jammer",
        ["weight"] = 10000,
        ["type"] = "item",
        ["image"] = "jammer.png",
        ["unique"] = true,
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "A device to block radio signals around"
},
["radiocell"] = {
        ["name"] = "radiocell",
        ["label"] = "AAA Cells",
        ["weight"] = 500,
        ["type"] = "item",
        ["image"] = "radiocell.png",
        ["useable"] = true,
        ["shouldClose"] = true,
        ["description"] = "Batteries to powerup radio device"
}

OX Inventory

If you are using ox inventory then Navigate to ox_inventory/data/items.lua and add this:

['radio'] = {
	label = 'Radio',
	weight = 1000,
	allowArmed = true,
	consume = 0,
	client = {
		event = 'mm_radio:client:use'
	}
},

['jammer'] = {
	label = 'Radio Jammer',
	weight = 10000,
	allowArmed = true,
	client = {
		event = 'mm_radio:client:usejammer'
	}
},

['radiocell'] = {
	label = 'AAA Cells',
	weight = 1000,
	stack = true,
	allowArmed = true,
	client = {
		event = 'mm_radio:client:recharge'
	}
}

Images

Last updated 1 year ago

๐ŸŽ
๐Ÿ“ป
โคต๏ธ
๐Ÿ‘œ
9KB
radiocell.png
image
7KB
jammer.png
image
16KB
radio.png
image