Configuration

Config = {
    Locations = {
        [1] = { 
            name = "Moneywash1", 
            coords = vector3(1118.15, -3194.37, -40.4),         -- Position to interact 
            modelCoords = vector3(1118.15, -3193.27, -40.39),    -- Position of the machine
            modelHeading = 0.0,                                 -- Heading of the machine
            tax = 45,                                           -- Taxes in procent
            onlyGang = false,                                   -- If true only gang can wash money
            gangName = "ballas"                                 -- nil or set a gang name if onlyGang is true
        },
        [2] = { 
            name = "Moneywash2", 
            coords = vector3(1119.91, -3194.40, -40.4), 
            modelCoords = vector3(1119.95, -3193.27, -41.4), 
            modelHeading = 0.0, 
            tax = 30, 
            onlyGang = false, 
            gangName = nil 
        },
        -- You can add as many as locations you want
    }
}

Config.WashTime = 10000
Config.Item = "markedbills"
Config.NotifyText = "drawtext"
Config.DrawDist = 3.0

Config.Lang = {
    ["no_machine"] = "No washing machine nearby!",
    ["money"] = "You got ",
    ["error"] = "Wrong amount!",
    ["not_blackmoney"] = "Not enough black money!",
    ["already_using"] = "Machine is already running!",
    ["drawtext"] = "~g~[E]~w~ Wash Money",
    ["default_key"] = "Press ~INPUT_CONTEXT~ to wash money",
}

Last updated