💴Documentation

All information you need for use the script

Setup your framework

Config

Config.Framework = "ESX"

SQL

Execute the SQL file

CREATE TABLE `axio_moneywash` (
	`id` INT(11) NOT NULL AUTO_INCREMENT,
	`identifier` VARCHAR(60) NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci',
	`amount` INT(11) NULL DEFAULT NULL,
	`percent` INT(11) NULL DEFAULT NULL,
	`time` INT(11) NULL DEFAULT NULL,
	`active` TINYINT(1) NULL DEFAULT '1',
	INDEX `id` (`id`) USING BTREE
)
COLLATE='utf8mb4_unicode_ci'
ENGINE=InnoDB

Config

Info

Log

If you want log player activity with the script set to "true"

Set your discordWebhook

blackMoneyAccount

Choose your account name for black money. In basic ESX it's "black_money"

TimeToWash

It's the time need for wash the money. You can change but's your need to but the time in HOUR only

Cops

You can choose to alert the cops (20%) You can configure the time before cops receive alert YOU HAVE TO SET IN "cops_sv.lu" YOUR CALLING SYSTEM FOR COPS

SerchTime

It's the time the player took to search the vehicle

TimeBeforeDespawnCar

The time before the car is delete

Ped

Model : The ped model, you can change

Pos : Choose your, but need to be a "vector4"

Washing

It's the different washing level available

You can change / add or remove many level as you want

SpawnCarPos

The differents spawning point available Need a vector4

Vehicle

List of vehicle can spawn

Notification

You can add your notification system Just replace with your type for client = "error" / "success" / "inform"

config.lua
Config.ClientNotification = function(title, msg, type)
    lib.notify({
        title = title,
        description = msg,
        type = type,
        position = 'bottom'
    })
end

Last updated