Configuration
Go to config.lua
Config = {}
Config.Framework = 'qb' -- Framework -> 'esx', 'qb'
Config.Locales = 'en' -- Language -> 'en', 'it', 'fr'
Config.NotificationSystem = 'qb' ---> 'esx', 'qb', 'ox', 'okok'
Config.TextUI = 'qb' ---> 'esx', 'qb' 'ox', 'okok'
Config.UseOxTarget = 'false' -- Use Ox Target -> 'true' / Use Marker -> 'false'
-- Laundry Locations
Config.LaundryLocations = {
vector3(1138.2142, -991.3291, 46.1131),
vector3(1136.4723, -976.5604, 46.5216),
vector3(900.3210, -600.4567, 35.8910)
-- vector3(0,0,0) -- Add more locations here
}
-- Time to wash the money in ms
Config.WashTime = 2000
-- Washed money percentage
Config.MinPercent = 80
Config.MaxPercent = 90
--- MARKER CONFIG ---
Config.UseCustomMarker = 'true' -- false = Standard Fivem Marker / true = Custom Marker with your Logo
Config.DrawDistance = 10.0
Config.interactDistance = 1.0
-- Config Custom Marker
Config.CMarker = {
size = 0.7, -- Marker size
bobUpAndDown = false, -- Should the marker move up and down?
faceCamera = false, -- Should the marker always face the camera?
rotate = true, -- Should the marker rotate?
}
-- Config Standard Marker
Config.Marker = {
type = 29, -- https://docs.fivem.net/docs/game-references/markers/
size = {x = 1.0, y = 1.0, z = 1.0}, -- Marker size
color = {r = 0, g = 255, b = 0, a = 100}, -- Marker color with transparency (a = alpha)
bobUpAndDown = false, -- Should the marker move up and down?
faceCamera = false, -- Should the marker always face the camera?
rotate = true, -- Should the marker rotate?
}
Last updated