βš™οΈConfiguration

Check the standard Config!

config.lua
Config = {}

Config.Main = {
    Information = {
        language = "en", -- Select your Language e.g "de". It has to be registred in the language.lua file!
        notify = "sservice",
        esxevent = "es_extended", -- Standart "es_extended"
        blackmoneyaccount = "black_money",
        greenmoneyaccount = "money",
        exchange = "$",
        BlacklistedJobs = {
            ["ambulance"] = true
        },
        police = {
            ["police"] = true
        }
    },
    WashingStation = {
        Percentage = {
            ChangePercentage = false,
            StillPercentage = 10,
            Interval = 60 -- In minutes
        },
        Notifys = {
            FinishedProductNotify = true
        },
        Functions = {
            HasToStayNearPoint = false,
            MaxDistanceBevorStopOfProcess = 10.0,
            PlayerHasToBeOnline = true,
            ShouldTimeBeAddedByBiggerSums = false,
            CheckForMoneyToAddTime = 1000,
            TimeToAddForCheck = 1000 -- In ms
        },
        Blips = {
            PDBlip = {
                RadiusOfBlip = 100,
                blipspriteradius = 161, -- Sprite of radius
                middleblipsprite = 137, -- Sprite of Blip
                display = 15, -- Display
                scale = 1.0, -- Scale = Float
                colour = 3
                -- Color
            }
        }
    }
}

Config.Marker = {
    type = 21,
    size = {
        x = 0.5,
        y = 0.5,
        z = 0.5
    },
    color = {
        r = 249,
        g = 28,
        b = 42,
        a = 144
    },
    rotate = true,
    jump = false,
    drawdistance = 10.0 -- Distance to see the marker
}

Config.Locations = {
    {
        coords = vector3(-793.04644775391, 5408.2680664062, 34.218238830566),
        npcheading = 90.190795898438,
        spawntomlo = true,
        accessable = {
            specifcjobsonly = false,
            jobs = {
                ["lcn"] = true
            }
        },
        timeforwash = 1 * 20, -- In Seconds
        visuals = {
            npc = {
                enabled = true,
                model = "s_m_y_dealer_01"
            },
            marker = {
                enabled = false,
                type = 21,
                size = {
                    x = 0.5,
                    y = 0.5,
                    z = 0.5
                },
                color = {
                    r = 249,
                    g = 28,
                    b = 42,
                    a = 144
                },
                rotate = true,
                jump = false,
                drawdistance = 10.0
            }
        },
        OpenTimes = {
            active = false,
            OpenTime = 12,
            CloseTime = 22
        },
        PercentageChange = {
            MaxPositiveChange = 20,
            MaxNegativChange = -10
        },
        Blip = {
            active = true, -- Enable or disable (true, false)
            Blipsprite = 501, -- https://docs.fivem.net/docs/game-references/blips/
            BlipColor = 1,
            BlipScale = 1.0,
            BlipName = "Moneywash"
        }
    }
}

Config.WashLocation = {
    spawncoords = vector4(1138.1153564453, -3199.1962890625, -39.665725708008, 5.1190214157104),
    menupoint = vector4(1123.7873535156, -3194.3725585938, -40.397880554199, 9.9708194732666)
}

If you find any errors in the configuration and you can't fix them yourself, open a ticket!

Last updated