> For the complete documentation index, see [llms.txt](https://mythic-scripts.gitbook.io/mythic-scripts-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mythic-scripts.gitbook.io/mythic-scripts-documentation/resources/money-order-fraud/configuration.md).

# Configuration

All configuration lives in `config.lua` .

### Full Config

{% code title="config.lua" expandable="true" %}

```lua
Config = {}

Config.FraudPlugs = {
    low = {
        name = 'Lil B',
        tagline = 'Fast • Cheap • Risky',
        ped = 'a_m_m_soucent_02'
    },
    mid = {
        name = 'PaperBoy Reece',
        tagline = 'Balanced • Trusted • Quiet',
        ped = 'a_m_m_business_01'
    },
    high = {
        name = 'Mr. Ledger',
        tagline = 'Elite • Clean • Untouched',
        ped = 'a_m_m_eastsa_02'
    }
}

Config.MoneyOrderBuyPrice = {
    low = {
        [500]  = 175,
        [1000] = 350,
        [1500] = 525
    },
    mid = {
        [500]  = 275,
        [1000] = 550,
        [1500] = 825
    },
    high = {
        [500]  = 400,
        [1000] = 800,
        [1500] = 1200
    }
}

Config.MoneyOrderCashout = {
    money_order_500_low   = 500,
    money_order_500_mid   = 500,
    money_order_500_high  = 500,

    money_order_1000_low  = 1000,
    money_order_1000_mid  = 1000,
    money_order_1000_high = 1000,

    money_order_1500_low  = 1500,
    money_order_1500_mid  = 1500,
    money_order_1500_high = 1500
}

Config.MeetupLocations = {
    vec4(-284.874725, 0.237363, 51.454224, 229.606293),
    vec4(963.718689, -117.929672, 74.336304, 226.771667),
    vec4(1088.848389, -776.281311, 58.261597, 2.834646),
    vec4(1211.169189, -1391.723022, 35.210938, 184.251968),
    vec4(457.279114, -2059.226318, 23.989014, 272.125977),
    vec4(141.494507, -1298.545044, 29.212402, 212.598419),
    vec4(-1.727467, -1023.679138, 28.976562, 170.078735),
    vec4(-1536.474731, -424.430756, 35.581665, 223.937012)
}

Config.BankNPC = {
    model = 'a_f_y_business_01', 
    coords = vec4(241.87, 226.87, 106.28, 158.74)
}
```

{% endcode %}

### Items

{% code title="data/items.lua" expandable="true" %}

```lua
['fake_ssn_card'] = {
    label = 'Fake Social Security Card',
    weight = 20,
    stack = false,
    close = true,
    description = 'A forged Social Security card. Looks real enough to pass a quick check.'
},
['fake_id_card'] = {
    label = 'Fake ID Card',
    weight = 25,
    stack = false,
    close = true,
    description = 'A high-quality fake ID card with altered personal information.'
},
['money_order_500_low'] = {
    label = '$500 Money Order (Low Quality)',
    weight = 50,
    stack = false,
    close = true,
    description = 'A poorly forged $500 money order. High chance of being detected.'
},
['money_order_500_mid'] = {
    label = '$500 Money Order (Mid Quality)',
    weight = 50,
    stack = false,
    close = true,
    description = 'A decent-quality $500 money order. Might pass with confidence.'
},
['money_order_500_high'] = {
    label = '$500 Money Order (High Quality)',
    weight = 50,
    stack = false,
    close = true,
    description = 'A professionally forged $500 money order. Very convincing.'
},
['money_order_1000_low'] = {
    label = '$1,000 Money Order (Low Quality)',
    weight = 50,
    stack = false,
    close = true,
    description = 'A sloppy $1,000 money order. Extremely risky to cash.'
},
['money_order_1000_mid'] = {
    label = '$1,000 Money Order (Mid Quality)',
    weight = 50,
    stack = false,
    close = true,
    description = 'A solid $1,000 money order. Still risky, but usable.'
},
['money_order_1000_high'] = {
    label = '$1,000 Money Order (High Quality)',
    weight = 50,
    stack = false,
    close = true,
    description = 'A clean, high-end $1,000 money order. Hard to detect.'
},
['money_order_1500_low'] = {
    label = '$1,500 Money Order (Low Quality)',
    weight = 50,
    stack = false,
    close = true,
    description = 'A badly forged $1,500 money order. Almost guaranteed trouble.'
},
['money_order_1500_mid'] = {
    label = '$1,500 Money Order (Mid Quality)',
    weight = 50,
    stack = false,
    close = true,
    description = 'A risky $1,500 money order with average forgery quality.'
},
['money_order_1500_high'] = {
    label = '$1,500 Money Order (High Quality)',
    weight = 50,
    stack = false,
    close = true,
    description = 'An elite-level $1,500 money order. Very high success chance.'
},
['fraud_phone'] = {
    label = 'Fraud Phone',
    weight = 150,
    stack = false,
    close = true,
    description = 'A burner phone loaded with fraud contacts, templates, and drop information.'
},
```

{% endcode %}

{% hint style="info" %}
All the icons for the inventory are located in install/IMAGES/\*.png.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://mythic-scripts.gitbook.io/mythic-scripts-documentation/resources/money-order-fraud/configuration.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
