Ultimate Car Wash & Money Laundering
1. Inventory Setup
Step A: Item Definitions
For QB-Inventory (qb-core/shared/items.lua)
Add these lines to your shared items:
lua
['receipt_carwash'] = {
['name'] = 'receipt_carwash',
['label'] = 'Car Wash Receipt',
['weight'] = 50,
['type'] = 'item',
['image'] = 'receipt_carwash.png',
['unique'] = false,
['useable'] = false,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A receipt confirming a completed car wash service.'
},
For OX_Inventory (ox_inventory/data/items.lua)
Add these lines to your items list:
lua
['receipt_carwash'] = {
label = 'Car Wash Receipt',
weight = 50,
stack = true,
close = true,
description = 'A receipt confirming a completed car wash service.',
},