Chop Shop (Scrap Vehicles, Dynamic Rewards, Missions & Custom Model)

(13)
(255)
You can always read the reviews or discuss this product
Media gallery
No description
Buy product
In short

A brand new and unique script that adds additional role-playing opportunities for your players. Scrap vehicles in return for a price using the chop shop. Custom and unique models with realistic animations and effects.

This works perfectly as a way for towers or criminals to tow/steal vehicles in order to earn money. Imagine a vehicle has broken down from car chase, shoot-out or another situation. Criminals might leave the vehicle behind and escape the scene. Another player can take advantage of this and steal the vehicle, drive it to the chop shop and cash in. If you own a Tow Truck System a tower could take advantage of this, and instead of fining the vehicle, he could take it to the chop shop and cash in.

Scrap payment is based on the vehicles condition when delivered, or based on a fixed price set by the server owner. You can also customize additional bonuses for your donator ranks.

Features

๐Ÿ”ง Chop Vehicles

  • Works with ANY car dealer.
  • Drive vehicles into the chop shop machine.
  • Chop shop rewards you money based on a calculation on the vehicles condition.
  • Allow only specific teams to use the chop shop (configurable, enable/disable). Opportunity to add roleplay via jobs.
  • Configure a personal chop cooldown for players to avoid spam.
  • Add vehicle models to a blacklist if you wish to disable chopping them. Great for government vehicles such as police cars.


๐ŸŽฏ Mission System

  • Missions are started via the NPC next to the chop shop.
  • Each chop shop has a target vehicle they would like you to find.
  • The target vehicle changes over time. If you check back later the vehicle they want is most likely a new one.
  • Reward price is dynamic and randomized per chop shop. It also changes with the vehicle.
  • Based on your configuration the vehicle is either marked on the map or not marked on the map.
  • There's a configurable heads up display that shows countdown timer, vehicle name and vehicle owner.
  • Everything is modular and can be enabled or disable to your liking. You can also disable missions entirely.
  • Supports L2 License Plates and Realistic Police in missions to display license plate of vehicle.


๐Ÿ’ธ Dynamic Sell Prices

  • Vehicles are sold at a price that is primarily based on their condition and luxury.
  • Luxury is defined based on engine statistics (from the vehicle script).
  • Chop bonuses can be enabled based on the players rank.
  • Supports VCMod for a more in-depth condition calculation.
  • You can configure fixed chop prices for specific vehicles if you desire.
  • Optionally you can force the owner of the chopped/stolen vehicle to pay for the chop.


๐Ÿ–ฅ๏ธ 3D2D Screen

  • The screen on the chop shop will show information about the detected vehicle inside the shop.
  • Information such as vehicle owner, vehicles health, vehicles condition and chop price.
  • Use the screen to confirm the chop price and scrap the vehicle.
  • Shows time remaining and countdown when chopping vehicle.


๐Ÿ’พ Saving System

  • Spawn unlimited amount of chop shops on the map.
  • Map based saving system.
  • Spawn through Q menu as an admin and console command to save entities.


๐Ÿ”จ Permanently Remove Vehicles


๐Ÿš— VCMod Support

  • A better dynamic price evaluation on vehicles.
  • Counts damaged parts and calculates it accordingly in the price.
  • Works perfectly with the new smart exiting vehicle detection in VCMod.


๐Ÿ’ป bLogs Support

  • Starting vehicle chop process.
  • Successfully scrapped a vehicle.
  • Chop mission started.
  • Chop mission failed.
  • Chop mission completed.


๐Ÿ’ฏ Level System Support


๐ŸŒŽ Language System

  • English
  • Danish
  • French
  • Russian
  • Spanish
  • Turkish


Discord Server

I own a Discord server for customers and anyone else who wish to join. I will occasionally provide exclusive offers and help with minor issues that might occur with my scripts. If you have a more serious problem, please create a support ticket on GModStore.

This addon supports DarkRP 2.7.0+

Extract ch_chop_shop to addons.

Once you've done that, you must setup chop shops in-game. To do that, you must first of all be an administrator on the server.

Once on your server, you can find the chop shop entity in Q Menu -> Entities -> Crap-Head Scripts -> Chop Shop

Spawn and position the chop shop(s) and use your in-game console to save them with the command chop_shop_save

You can use the command chop_shop_clear to clear all chop shops.

CONTENT

Custom models and materials are used for this script. Script content can be found at:

https://steamcommunity.com/sharedfiles/filedetails/?id=2249933067

Make sure to add this to your servers workshop collection as well.

To customize the general settings, go to ch_chop_shop/lua/ch_chop_shop/shared/chop_shop_config.lua

General Config

-- SET LANGUAGE
-- Available languages: English: en - Danish: da - Russian: ru - French: fr - Turkish: tr - Spanish: es
CH_ChopShop.Config.Language = "en" -- Set the language of the script.


-- If you are not satisfied with my price calculations, you can adjust this price multiplier.
-- 1 means it's using my calculation (AKA no multiplications)
-- 2 doubles the amount
-- You can use decimal numbers as you wish.
-- Anything below 1 (aka, 0.5 for example) will make the payout LOWER than my calculation by default.
CH_ChopShop.Config.PriceMultiplier = 1

--[[
	General
--]]
CH_ChopShop.Config.ChopOwnVehicles = false -- Should players be able to sell their own vehicles to the chop shop?
CH_ChopShop.Config.NotificationTime = 10 -- Amount of seconds notifications will show.
CH_ChopShop.Config.VehicleChopCooldown = 1800 -- Amount of seconds a player is on a cooldown after scrapping a vehicle. Default 1800 = 30 MINUTES
CH_ChopShop.Config.CarOwnerPaysForChop = false -- Should the car owner of the stolen vehicle pay for the chop instead of the chop shop? (Recommended is false)

--[[
	Disallow Vehicle Spawning
--]]
CH_ChopShop.Config.DisallowVehicleSpawningAfterChop = false -- If player X chops player Y's vehicle, then player Y cannot spawn that vehicle for x amount of seconds.
CH_ChopShop.Config.DisallowVehicleSpawningTime = 600 -- How many seconds before player Y can spawn that vehicle again. Default 600 = 10 minutes

--[[
	Permanently Removing Vehicles
--]]
-- Currently supports VCMod and William's Car Dealer
CH_ChopShop.Config.PermanentlyRemoveVehiclesOnChop = false -- THIS PERMANENTLY REMOVES VEHICLES FROM CAR DEALERS WHEN CHOPPED!

--[[
	Team Restrictions
--]]
CH_ChopShop.Config.EnableChopTeamRestriction = false -- Restrict the chop shop to certain teams only.
CH_ChopShop.Config.AllowedChopTeams = { -- Only these teams are allowed to interact with the chop shop.
	["Junk Yard Worker"] = true,
	["Citizen"] = true,
	["Chopper"] = true,
	["Organized Crime"] = true,
}

--[[
	Chop Shop Entity
--]]
CH_ChopShop.Config.ScanForVehicles = 2 -- Interval between scanning for vehicles within the chop shop in seconds.

CH_ChopShop.Config.ChopVehicleTime = 90 -- How many seconds does it take for the chop shop to fully chop the vehicle? [MINIMUM 30 SECONDS]
CH_ChopShop.Config.DistanceTo3D2D = 500000 -- The distance between the player and the chop shop entities screen before drawing it.

CH_ChopShop.Config.ChopSound = "physics/metal/metal_box_scrape_smooth_loop1.wav" -- Sound that plays while chopping the vehicle.
CH_ChopShop.Config.ChopSoundLevel = 150 -- Sound volume. SOUND LEVELS: https://wiki.facepunch.com/gmod/Enums/SNDLVL

CH_ChopShop.Config.StayCloseWhenChopping = true -- If the player is too far away when chopping is done, do not pay out and notify.
CH_ChopShop.Config.StayCloseDistance = 500000 -- Distance between the player and chop shop if they want their payout. (Only if above config is enabled)

CH_ChopShop.Config.EnableSmokePipes = true -- Should smoke emit from the chop shop when it's chopping a vehicle?

CH_ChopShop.Config.EnableGlobalCooldown = false -- Should there be a global cooldown seperated from the player cooldown after someone chops a vehicle? This stops anyone from using the chop shop.
CH_ChopShop.Config.GlobalCooldownTime = 1800 -- Amount of seconds THE CHOPSHOP is on a cooldown after scrapping a vehicle. Default 1800 = 30 MINUTES
CH_ChopShop.Config.GlobalCooldownVehicleModel = "models/props_vehicles/car001b_hatchback.mdl" -- If EnableGlobalCooldown is turned on then it will spawn a broken vehicle prop inside the chop shop while it is unavailable. This is model path.

CH_ChopShop.Config.MakePlayerWanted = true -- Should we make the hacker wanted once he begins chopping a vehicle?
CH_ChopShop.Config.PlayerWantedTime = 120 -- For how long should we make him wanted?

CH_ChopShop.Config.UnwantedAfterChop = false -- Once chopping finishes do we make him unwanted?

--[[
	Donator Settings
--]]
CH_ChopShop.Config.EnableDonatorBonus = true -- If this feature should be enabled or not . Enables bonus on scrapping vehicles based on ranks.

CH_ChopShop.Config.ChopDonatorBonuses = {
	["owner"] = 3,
	["superadmin"] = 2,
	["admin"] = 2,
	["donator"] = 1.5,
	["vip"] = 1.25,
}

--[[
	Missions System
--]]
CH_ChopShop.Config.EnableMissionSystem = true -- Should the mission system be enabled or not?
CH_ChopShop.Config.MissionNPCModel = "models/gman_high.mdl" -- NPC model

CH_ChopShop.Config.EnableChopMissionTeamRestriction = false -- Restrict the chop shop missions to certain teams only.
CH_ChopShop.Config.AllowedChopMissionTeams = { -- Only these teams are allowed to interact with the chop shop.
	["Gang Member"] = true,
	["Citizen"] = true,
	["Chopper"] = true,
	["Organized Crime"] = true,
}

CH_ChopShop.Config.BlacklistedChopMissionVehicles = {
	["models/tdmcars/bmwm5e34.mdl"] = true,
	["enter model path"] = true,
}

CH_ChopShop.Config.MissionRewardMin = 5000 -- How much will a player minimum earn from a mission?
CH_ChopShop.Config.MissionRewardMax = 15000 -- How much can a player maximum earn from a mission?

CH_ChopShop.Config.TimeToComplete = 600 -- How many seconds does the player have to complete the mission? Default 600 = 10 MINUTES
CH_ChopShop.Config.MissionCooldown = 1800 -- Cooldown between the player can start a new mission. Default 1800 = 30 MINUTES
CH_ChopShop.Config.NPCUpdateFrequency = 240 -- How often does the NPC update? That means finds a new random car and sets a new random price for missions.

CH_ChopShop.Config.ShouldDrawMissionVehicleOnScreen = false -- Draw EXACTLY where the mission vehicle is located on the map/screen. This makes it easy to find the car.
CH_ChopShop.Config.ShouldDrawMissionHUD = true -- Draw the vehicle name, vehicle owner, vehicle reward and countdown on the players screen. This does not give a big advantage.
CH_ChopShop.Config.MissionHUDPosX = 0.89 -- The X position for the HUD on the screen.
CH_ChopShop.Config.MissionHUDPosY = 0.02 -- The Y position for the HUD on the screen.

CH_ChopShop.Config.HUDBackgroundColor = Color( 20, 20, 20, 235 ) -- Color of the HUD background
CH_ChopShop.Config.VehicleNameColor = Color( 255, 255, 255, 255 ) -- Color of the vehicle name text
CH_ChopShop.Config.VehicleOwnerColor = Color( 255, 255, 255, 255 ) -- Color of the vehicle owner text
CH_ChopShop.Config.VehicleTimeLeftColor = Color( 180, 0, 0, 255 ) -- Color of the mission time left text

--[[
	XP System Support
--]]
CH_ChopShop.Config.ChopVehicleXPReward = 25 -- Amount of experience to give on successfully scrapping/selling a vehicle.
CH_ChopShop.Config.CompleteChopMissionXPReward = 50 -- Amount of XP to give on succesfully completing a chop mission.

--[[
	Chop Shop Fixed Prices
--]]
-- If the chop shop recognizes a model from this table, it will use this fixed price as the chop price, no matter the vehicles condition.
-- If the vehicles model is not found here, it will calculate the price based on vehicles condition.
CH_ChopShop.Config.UseFixedPrices = true
CH_ChopShop.Config.ChopVehiclesFixedPrices = {
	["models/tdmcars/bmw_m6_13.mdl"] = 1337,
	["enter model path"] = 1337,
}

--[[
	Chop Shop Blacklist
--]]
-- If the chop shop recognizes a model from this table, it will not allow the player to chop it.
-- This could be government vehicles, for example police cars.
CH_ChopShop.Config.UseBlacklist = true
CH_ChopShop.Config.ChopVehiclesBlacklist = {
	["models/sickness/meatwagon.mdl"] = true, -- sickness models ambulance
	["models/sickness/lcpddr.mdl"] = true, -- sickness models cop car
	["models/sickness/stockade2dr.mdl"] = true, -- sickness models SWAT truck
	["models/lonewolfie/ford_f350_ambu.mdl"] = true, -- LW cars ambulance
	["models/tdmcars/gtaiv_airtug.mdl"] = true, -- TDM air tug
	["models/tdmcars/gtav/police3.mdl"] = true, -- TDM police car
	["models/tdmcars/gtav/police.mdl"] = true, -- TDM police car
	["models/tdmcars/gtav/policeb.mdl"] = true, -- TDM police bike
	["models/tdmcars/gtav/bmx.mdl"] = true, -- TDM BMX
	["enter model path"] = true,
}

If you find any problems with the script, please create a support ticket with details of the situation and a copy/paste of the error in console. I am also not interested in modifying you a custom version of the addon. Also not upon payment. Sorry!

Conflicting addons is not to be said if I will support that or not. This is something I will decide upon confrontation about a conflicting addon. If you have some sort of proof that an addon is conflicting with my addon, please send me a PM with the details you might have.

Thank you!

If you like this script, you should check out some of my other addons for DarkRP. Just click the banner to open the script page in a new tab.

Custom models and materials made by Sterling Pierce

Banners made by Miskie

Icons made by Freepik from Flaticon

Font is Rajdhani


TRANSLATIONS

French translation by FlavSnip.

Russian translation by Mactavish.

Spanish translation by Tekiad.

Turkish translation by Wolflix.

German translation by Deltaa.

Product reviews

5.00 average based on 13 reviews

AnarchyX
Awesome features
Very well-made script, adds a fun new job to RP servers.
By AnarchyX -
(version 1.0.7)
Dreamworks
Great Models
The models and idea of this script are amazing and bring a whole new task for thieves to do
By Dreamworks -
(version 1.2.1)
CLOROX
Great support
Even though the i had an issue with fps drop, crap head helped me and tried to fix it, i dont know what was the cause of the issue, but remaking the server from scratch fixed the issue.
By CLOROX -
(version 1.2.0)
Tom Hardy
10/10
is is literally the best when it comes to reselling cars. Custom animations are only the face of it. The config is extensive as hell, you literally can do anything about the values of the car and the payment. It also has some UI on the model, wich I think is the best from the model. 10/10 always best support, it's Craphead dud
By Tom Hardy -
(version 1.2.0)
Tomy
Great addon
Excellent addon, simple to configure. addon usable on any type of darkrp server.
By Tomy -
(version 1.1.6)
previous
1 of 3
next
Buy product
Crap-Head & Sterling
1 products - 2 members
Looking for reliable and easy-to-use game server hosting with free Anycast and DDoS protection? Get 30% off your first payment at Physgun with the coupon code gmodstore at checkout.
Product details
Views:
23.5K
Purchases:
617
Added:
Updated:
Price:
$5.99
Categories:
Languages:
Russian, English, Danish, Turkish, French, Spanish
Requirements
  • DarkRP
Actions
Report
Search products...