Solstice-MoneyLaunder

For any question or support please visit https://discord.gg/uJwrn3gyuS

Dependencies

QB-Menu QB-Core

Install

Drag and drop the script into your resources folder

inside of your server cfg add this line

ensure Solstice-MoneyLaunder

Inside of qb-core/shared/items.lua add this line

['markedcash'] 					 	 = {['name'] = 'markedcash', 							['label'] = 'Marked Cash', 					['weight'] = 100, 		['type'] = 'item', 		['image'] = 'markedcash.png', 			['unique'] = false, 	['useable'] = true, 	['shouldClose'] = true,    ['combinable'] = nil,   ['description'] = 'Money that has been obtained illegaly. Marked for police seizure'},

Insert this table into your database

CREATE TABLE investments (
    id INT AUTO_INCREMENT PRIMARY KEY,
    identifier VARCHAR(255) NOT NULL,
    businessName VARCHAR(255) NOT NULL,
    amountInvested INT NOT NULL,
    convertedAmount INT NOT NULL,
    endTime TIMESTAMP NOT NULL
);

To add new business and change conversion rates they can be found in cl_moneywash.lua

Last updated

Was this helpful?