Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

An in-depth & multi-feature metal detecting script made for the qbcore framework.

License

Notifications You must be signed in to change notification settings

plasmaFPS/qb-metaldetecting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

qb-metaldetecting

An in-depth & multi-feature metal detecting script made for the qbcore framework. This is my first release, I would appreciate all feedback good or bad. Feel free PR this repository with any improvements you suggest. Made by plasma#2782 & EU ENVY#9641.

Video Preview

https://www.youtube.com/watch?v=4cd9LtAMNZM

Dependencies

Features

  • Easy to understand config with options for script customization.
  • Detector Overheat Chance
  • Common & Rare Item Chances
  • Peds for Common & Rare Item Trade / Sales (can disable)
  • Custom Prop with animations
  • Easily configurable detect locations using PolyZones

Future Updates

  • Add sell values to config
  • Add locales system

Credits

License

GNU General Public License v3.0

Inserts (Shops / Items)

1. Insert the images located in the [IMAGES] folder into your inventories html > images directory.

2. (Optional) If you would like the metal detector purchaseable from a shop:

  • Insert this line into your qb-shops > config.lua (wherever you want it), ensure you change the array index & slot #'s to match your config.
[1] = {
  name = "metaldetector", 
  price = 500, 
  amount = 50, 
  info = {}, 
  type = "item", 
  slot = 1
},

3. Insert this list of items in your qb-core > shared > items.lua

-- qb-metaldetecting 

["metaldetector"] = {
    ["name"] = "metaldetector",
    ["label"] = "Metal Detector",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "metaldetector.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "Detect Metal beep"
},

-- common detectable items
["metaltrash"] = {
    ["name"] = "metaltrash",
    ["label"] = "Metal Trash",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "metaltrash.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "Trashed Metal"
},
["irontrash"] = {
    ["name"] = "irontrash",
    ["label"] = "Iron Trash",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "irontrash.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "Trashed Iron"
},
["bulletcasings"] = {
    ["name"] = "bulletcasings",
    ["label"] = "Bullet Casings",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "bulletcasings.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "Bullet Casings"
},
["aluminumcan"] = {
    ["name"] = "aluminumcan",
    ["label"] = "Aluminium Can",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "aluminiumcan.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "Alumunim Cans"
},
["brokenknife"] = {
    ["name"] = "brokenknife",
    ["label"] = "Broken Knife",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "brokenknife.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "Rusted Knife"
},
["brokendetector"] = {
    ["name"] = "brokendetector",
    ["label"] = "Broken Detector",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "brokendetector.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "A broken metal detector"
},
["brokenphone"] = {
    ["name"] = "brokenphone",
    ["label"] = "Broken Phone",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "brokenphone.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "Broken Phone"
},
["housekeys"] = {
    ["name"] = "housekeys",
    ["label"] = "House Keys",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "housekeys.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "Random House Keys"
},

-- rare detectable items

["brokengameboy"] = {
    ["name"] = "brokengameboy",
    ["label"] = "Broken Gameboy",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "brokengameboy.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "A Broken Gameboy"
},
["burriedtreasure"] = {
    ["name"] = "burriedtreasure",
    ["label"] = "Burried treasure",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "burriedtreasure.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "Burried Treasure, woah"
},
["treasurekey"] = {
    ["name"] = "treasurekey",
    ["label"] = "Treasure key",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "treasurekey.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "A key? Maybe for treasure"
},
["antiquecoin"] = {
    ["name"] = "antiquecoin",
    ["label"] = "Antique Coin",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "antiquecoin.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "This seems old..."
},
["goldennugget"] = {
    ["name"] = "goldennugget",
    ["label"] = "The Mojave Nugget",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "goldnugget.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "This seems valuable, hmm"
},
["goldcoin"] = {
    ["name"] = "goldcoin",
    ["label"] = "Gold coin",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "goldcoin.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "o.O GOLD!"
},
["ancientcoin"] = {
    ["name"] = "ancientcoin",
    ["label"] = "Ancient Coin",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "aincientcoin.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "This seems really old and unique."
},
["ww2relic"] = {
    ["name"] = "ww2relic",
    ["label"] = "WW2 Relic",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "ww2relic.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "I rememeber this from history class."
},
["steeltrash"] = {
    ["name"] = "steeltrash",
    ["label"] = "Steel Trash",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "steelcan.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = false,
    ["combinable"] = nil,
    ["description"] = "A steel can"
},
["pocketwatch"] = {
    ["name"] = "pocketwatch",
    ["label"] = "Pocket Watch",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "pocketwatch.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "A pocket watch"
},

-- other items
["gameboy"] = {
    ["name"] = "gameboy",
    ["label"] = "Gameboy",
    ["weight"] = 200,
    ["type"] = "item",
    ["image"] = "gameboy.png",
    ["unique"] = false,
    ["useable"] = false,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "A working Gameboy."
}