wrenchInstallation

1. Download Resource

Download the purchased resource from CFX Portalarrow-up-right - the official site of FiveM with purchased resources.

2. Add Required Items

Add the items to your inventory system’s item file or database, then copy the images from orbit-laundry/install/images into your inventory’s image folder.

chevron-rightESX Installationhashtag

-- ============================================
-- ESX ORBIT LAUNDRY COMPLETE INSTALLATION
-- ============================================
-- This file contains everything needed for ESX
-- 
-- STEP 1: Run the SQL below in your database
-- ============================================

-- [[[ STEP 1: SQL DATABASE SETUP ]]]
-- Run this SQL in your database (phpMyAdmin, HeidiSQL, etc.):

-- Add wet_money item to ESX items table
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`, `description`) 
VALUES ('wet_money', 'Wet Money', 0, 0, 1, 'Money that has been washed and needs drying.');

print("========================================")
print("ESX Orbit Laundry Installation Complete")
print("========================================")
print("1. Run the SQL in your database")
print("2. IMPORTANT: Black money already exists in ESX as 'black_money' account")
print("3. Restart your server")
print("========================================")
chevron-rightOX Inventory Installationhashtag

-- ============================================
-- OX INVENTORY ORBIT LAUNDRY COMPLETE INSTALLATION
-- ============================================
-- This file contains everything needed for OX Inventory
-- 
-- STEP 1: Add the wet_money item to ox_inventory
-- STEP 2: Add the wet_money.png image file
-- ============================================

-- [[[ STEP 1: ADD TO OX INVENTORY ]]]
-- Copy and paste this code into: ox_inventory/data/items.lua
-- Add it with the other items, usually at the bottom or in alphabetical order

['wet_money'] = {
    label = 'Wet Money',
    weight = 0,
    stack = true,
    close = true,
    description = 'Money that has been washed and needs drying.'
},

-- NOTE: markedbills already exists in most OX Inventory setups
-- If it doesn't exist, you may need to add it separately

-- [[[ STEP 2: ADD WET_MONEY.PNG IMAGE ]]]
-- You need wet_money.png image file
-- Place it in: ox_inventory/web/images/
-- 
-- If you don't have this image:
-- 1. Create a 100x100px PNG image
-- 2. Name it exactly: wet_money.png
-- 3. Or use an existing money image and rename it

print("========================================")
print("OX Inventory Orbit Laundry Installation Complete")
print("========================================")
print("1. Add Lua code to ox_inventory/data/items.lua")
print("2. Add wet_money.png to ox_inventory/web/images/")
print("3. NOTE: markedbills item should already exist")
print("4. Restart ox_inventory and orbit-laundry script")
print("========================================")
chevron-rightQBCORE Installationhashtag

-- ============================================
-- QBCORE ORBIT LAUNDRY COMPLETE INSTALLATION
-- ============================================
-- This file contains everything needed for QBCore
-- 
-- STEP 1: Run the SQL for wet_money in your database
-- STEP 2: Add the wet_money item to qb-inventory
-- STEP 3: Add the wet_money.png image file
-- ============================================

-- [[[ STEP 1: SQL DATABASE SETUP ]]]
-- Run this SQL in your database (phpMyAdmin, HeidiSQL, etc.):

-- Add ONLY wet_money item to QBCore items table
-- markedbills already exists in QBCore by default
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`, `description`) 
VALUES ('wet_money', 'Wet Money', 0, 0, 1, 'Money that has been washed and needs drying.');

-- [[[ STEP 2: ADD TO QB-INVENTORY ]]]
-- Copy and paste this code into: qb-inventory/shared/items.lua
-- Add it with the other items, usually at the bottom or in alphabetical order

['wet_money'] = {
    name = 'wet_money',
    label = 'Wet Money',
    weight = 0,
    type = 'item',
    image = 'wet_money.png',           -- <<< IMPORTANT: Need wet_money.png image!
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = 'Money that has been washed and needs drying.'
},

-- NOTE: markedbills already exists in QBCore by default
-- Check your qb-inventory/shared/items.lua for 'markedbills'

-- [[[ STEP 3: ADD WET_MONEY.PNG IMAGE ]]]
-- You need wet_money.png image file
-- Place it in: qb-inventory/html/images/
-- 
-- If you don't have this image:
-- 1. Create 100x100px PNG image
-- 2. Name it exactly: wet_money.png
-- 3. Or use existing money image and rename it

print("========================================")
print("QBCore Orbit Laundry Installation Complete")
print("========================================")
print("1. Run the SQL for wet_money in your database")
print("2. Add wet_money code to qb-inventory/shared/items.lua")
print("3. Add wet_money.png to qb-inventory/html/images/")
print("4. IMPORTANT: markedbills item already exists in QBCore")
print("5. Restart qb-inventory and orbit-laundry script")
print("========================================")
chevron-rightQBOX Installationhashtag

-- ============================================
-- QBOX ORBIT LAUNDRY COMPLETE INSTALLATION
-- ============================================
-- This file contains everything needed for QBox
-- 
-- STEP 1: Run the SQL for wet_money in your database
-- STEP 2: Add the wet_money item to qbx-core
-- STEP 3: Add the wet_money.png image file
-- ============================================

-- [[[ STEP 1: SQL DATABASE SETUP ]]]
-- Run this SQL in your database (phpMyAdmin, HeidiSQL, etc.):

-- Add ONLY wet_money item to QBox items table
-- markedbills already exists in QB-X by default
INSERT INTO `items` (`name`, `label`, `weight`, `decay`, `remove`, `description`, `stack`, `close`, `client`) 
VALUES ('wet_money', 'Wet Money', 0, NULL, 1, 'Money that has been washed and needs drying.', true, true, NULL);

-- [[[ STEP 2: ADD TO QBX-CORE ]]]
-- Copy and paste this code into: qbx-core/shared/items.lua
-- Add it with the other items, usually at the bottom or in alphabetical order

['wet_money'] = {
    name = 'wet_money',
    label = 'Wet Money',
    weight = 0,
    type = 'item',
    image = 'wet_money.png',           -- <<< IMPORTANT: Need wet_money.png image!
    unique = false,
    useable = false,
    shouldClose = true,
    description = 'Money that has been washed and needs drying.'
},

-- NOTE: markedbills already exists in QB-X by default
-- Check your qbx-core/shared/items.lua for 'markedbills'

-- [[[ STEP 3: ADD WET_MONEY.PNG IMAGE ]]]
-- You need wet_money.png image file
-- Place it in your inventory system's images folder
-- Usually: resources/[inventory-system]/html/images/
-- 
-- If you don't have this image:
-- 1. Create 100x100px PNG image
-- 2. Name it exactly: wet_money.png
-- 3. Or use existing money image and rename it

print("========================================")
print("QBox Orbit Laundry Installation Complete")
print("========================================")
print("1. Run the SQL for wet_money in your database")
print("2. Add wet_money code to qbx-core/shared/items.lua")
print("3. Add wet_money.png to your inventory images folder")
print("4. IMPORTANT: markedbills item already exists in QB-X")
print("5. Restart qbx-core and orbit-laundry script")
print("========================================")

3. Configuration

Configure config.lua to match your server framework and preferences, and add your own locations as needed.

scrollConfiguration Fileschevron-right

4. Start Resource

To start a resource in your server.cfg, ensure that it begins after your framework has been initiated. For instance, if you are using a framework like es_extended, you should start resource after it, like so:

Last updated