# Money Laundering

> Instead of traditional "click-and-wait" mechanics, this system ties the cleaning of illegal funds directly to your business's legitimate activity. By "mixing" dirty cash into legal sales, players can grow their criminal empire through their front-facing businesses.

{% hint style="info" %}
The config file for this system can be found in **av\_business/server/editable/\_laundry.lua**
{% endhint %}

<figure><img src="/files/epUp28QuVQygdBxHZs5V" alt=""><figcaption></figcaption></figure>

#### 1. The Physical Vault

Authorized businesses have a dedicated Vault Stash. Players must physically deposit their illegal items (e.g., `markedbills` or `black_money`) into this stash to begin the process.

> As an admin you need to generate the vault zone first, using the Admin Panel > Create Job Zone > Vault.

#### 2. Mixing

Money is not cleaned instantly. It is "mixed" every time a business activity occurs. Valid activities include:

* Front Desk (Cashiers): Direct sales to customers.
* Deliveries: Missions completed by employees.
* Invoices (Billing): Customer payments (can be toggled per business).
* You can add your own activities by triggering a cleanMoney() export, check the [Exports](/laptop-pack-v3/business/exports.md#server)

#### 3. The Multiplier Effect

To ensure balance between different types of businesses, the script uses a Laundry Multiplier. This determines how much dirty money is processed per $1 of legal sales.

* *Example:* If UwU Cafe has a 10.0x multiplier, a $100 coffee sale will "mix" and process $1,000 from the dirty stash.

The system is highly configurable. You can set different rules for every business:

* **Custom Fees:** Set a global fee (default: 15%) or specific fees per job (e.g., 10% for high-tier businesses).
* **Activity Control:** Decide exactly which activities wash money for which job. One business might only wash via deliveries, while another has special permission for billing.

#### Anti-Abuse Protections

* **Order Caps:** The `MaxPerOrder` setting prevents "friend-to-friend" abuse by capping how much of a single large sale counts toward the mixing process.
* **"Tsunami" Limits:** Every business has a maximum washing capacity per server restart. Once the cap is reached, no more money can be cleaned until the next restart.

#### Discreet Banking Logs

Cleaned funds are transferred to business accounts with professional, customizable descriptions to avoid suspicion from law enforcement or auditors:

* **"Misc. Store Extras"** by default

#### Business Owner Only

The only allowed person to access the Laundry tab is the Business Owner, no other employees can access the Laundry tab or the Vault zone.


---

# 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://docs.av-scripts.com/laptop-pack-v3/business/money-laundering.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.
