# Sell System

## 💰 Sell System

```actionscript-3
Players can sell chopped parts to black market dealers for cash.
```

## How It Works

```
1. 🔧 Chop parts from vehicles (get items)
2. 🧑 Go to **Sell NPC**
3. 💵 Sell individual parts or **sell all**
4. 💰 Receive cash payment
```

````
## Configuration

### Sell Locations

```lua
Config.SellLocations = {
    {
        id = 'sell_1',
        label = 'Black Market - East LS',
        enabled = true,
        npc = {
            model = 's_m_y_dealer_01',
            coords = vector4(478.06, -1313.38, 28.20, 202.06),
            scenario = 'WORLD_HUMAN_STAND_IMPATIENT',
        },
        blip = {
            enabled = true,
            sprite = 478,
            color = 2,
            scale = 0.7,
        },
        interactDistance = 2.5,
    },
}
````

#### Sell Prices

```
Config.SellPrices = {
    chop_engine          = { label = 'Engine',        price = 1500, minAmount = 1 },
    vehicle_transmission = { label = 'Transmission',  price = 900,  minAmount = 1 },
    chop_wheel           = { label = 'Wheel & Tire',  price = 400,  minAmount = 1 },
    vehicle_electronics  = { label = 'Electronics',   price = 350,  minAmount = 1 },
    chop_door            = { label = 'Car Door',      price = 250,  minAmount = 1 },
    chop_hood            = { label = 'Hood',          price = 200,  minAmount = 1 },
    chop_trunk           = { label = 'Trunk Lid',     price = 180,  minAmount = 1 },
    vehicle_exhaust      = { label = 'Exhaust',       price = 300,  minAmount = 1 },
}
```

| Option      | Description            |
| ----------- | ---------------------- |
| `price`     | Price per unit         |
| `minAmount` | Minimum amount to sell |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://elena-scripts.gitbook.io/elenascripts/jobs-and-activities/chop-shop-v1/sell-system.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
