# Wert ChopShop V2

## <mark style="background-color:orange;">INSTALLATION</mark>

1 - Drop the file into your resources folder

2 - Make sure all depends scripts exist (Or download it)

* <mark style="background-color:purple;">DEPENDS</mark>
* progressbar (<https://github.com/qbcore-framework/progressbar>)
* PolyZone (<https://github.com/mkafrin/PolyZone>)
* qb-target (<https://github.com/BerkieBb/qb-target>) If you want another target script
* qb-drawtext (<https://github.com/IdrisDose/qb-drawtext>)
* qb-menu (<https://github.com/qbcore-framework/qb-menu>)

3 - Add your item list, requid items

```lua
-- Item Lıst
["car_door"] 		= {["name"] = "car_door", 		["label"] = "Car door", 			["weight"] = 1000, 		["type"] = "item", 		["image"] = "car_door.png", 			["unique"] = false, 	["useable"] = true, 	["expire"] = nil, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = "Car door"},
["car_wheel"] 		= {["name"] = "car_wheel", 		["label"] = "Car wheel", 			["weight"] = 1000, 		["type"] = "item", 		["image"] = "car_wheel.png", 			["unique"] = false, 	["useable"] = true, 	["expire"] = nil, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = "Car wheel"},
["car_bonnet"] 		= {["name"] = "car_bonnet", 		["label"] = "Car bonnet", 			["weight"] = 1000, 		["type"] = "item", 		["image"] = "car_bonnet.png", 			["unique"] = false, 	["useable"] = true, 	["expire"] = nil, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = "Car bonnet"},
["car_boot"] 		= {["name"] = "car_boot", 		["label"] = "Car trunk parts", 			["weight"] = 1000, 		["type"] = "item", 		["image"] = "car_boot.png", 			["unique"] = false, 	["useable"] = true, 	["expire"] = nil, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = "Car boot"},
["arac_aku"] 		= {["name"] = "arac_aku", 		["label"] = "Araç aküsü", 	                ["weight"] = 2000, 		["type"] = "item", 		["image"] = "arac_aku.png", 	    	["unique"] = false, 	["useable"] = true, 	["expire"] = nil, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = "Araçlara elektrik sağlayan mükkemmel icat."},
["chopshop_note"] 	= {["name"] = "chopshop_note", 		["label"] = "Note Page", 	                ["weight"] = 100, 		["type"] = "item", 		["image"] = "chopshop_note.png", 			["unique"] = true, 	["useable"] = true, 	["expire"] = nil, 	["shouldClose"] = true,	   ["combinable"] = nil,   ["description"] = "Not page"},
```

4 - if you use different a target system change target exports (client.lua)

5 - Don't forget to customize the script via config.lua

6 - Restart server and you're ready

### *<mark style="background-color:green;">Installation complete</mark>*
