Page cover image

🗃️Full config preview

A full preview of the config file of the script.

Config = {}

Config.Keys = {} --Don't touch
Config.Timers = {} --Don't touch
Config.PersonsInside = {} --Don't touch
Config.GlobalCooldown = false --Don't touch
Config.CurrentLaundromat = nil --Don't touch

Config.WashSettings = {
    ['markedbills'] = {
        type = 'metadata', --amount / worth / metadata (READ DOCS)
        value = nil, --READ DOCS
        time = 1, --Time to wash item in minutes
        lossPercent = 10 --Percentage of loss when washing
    },
    -- ['inkedbills'] = {
    --     type = 'worth',
    --     value = 1000,
    --     time = 1,
    --     lossPercent = 10
    -- },
    -- ['moneyrolls'] = {
    --     type = 'amount',
    --     value = 100,
    --     time = 1,
    --     lossPercent = 15
    -- }
}

Config.Shell = vector4(1138.07, -3199.05, -39.67, 186.14)

Config.ContactPed = {
    model = `ig_avery`,
    pos = vector4(-69.77, -2671.23, 5.01, 111.03),
    price = 1000,
    cooldown = 3 --cooldown in hours for a new moneywash can get claimed. This deletes all keys. (reset)
}

Config.Sound = {
    name = 'washingmachine',
    volume = 0.5,
}

Config.Washers = {
    [1] = {
        pos = vector3(1122.34, -3193.86, -40.4),
        l = 1.3,
        w = 0.5,
        status = 'available', --Don't touch
        currentMoney = 0, --Don't touch
    },
    [2] = {
        pos = vector3(1123.75, -3193.79, -40.4),
        l = 1.3,
        w = 0.5,
        status = 'available',
        currentMoney = 0,
    },
    [3] = {
        pos = vector3(1125.5, -3193.73, -40.4),
        l = 1.3,
        w = 0.5,
        status = 'available',
        currentMoney = 0,
    },
    [4] = {
        pos = vector3(1126.92, -3193.75, -40.4),
        l = 1.3,
        w = 0.5,
        status = 'available',
        currentMoney = 0,
    },
}

Config.EmployeePeds = { --possible spawns of employees
    positions = {
        vector3(-46.62, -67.51, 58.98),
        vector3(-189.36, 100.67, 69.99),
        vector3(-189.36, 100.67, 69.99),
        vector3(-602.42, 118.32, 59.78),
        vector3(-766.5, -151.32, 37.52),
        vector3(-505.23, -389.49, 34.91),
        vector3(-266.61, -627.82, 33.37),
        vector3(-51.76, -792.66, 44.23),
        vector3(450.37, -963.77, 28.66),
        vector3(482.46, -1139.89, 29.42),
        vector3(795.88, -938.14, 25.56),
        vector3(875.48, -513.57, 57.33),
        vector3(1080.91, -529.99, 62.48),
        vector3(1209.9, -279.6, 69.09),
        vector3(731.51, 177.99, 85.19),
        vector3(186.05, 372.86, 108.34),
    },
    models = { --possible models of employees
        `a_f_m_bevhills_02`,
        `a_f_m_business_02`,
        `a_f_m_eastsa_02`,
        `a_f_m_fatbla_01`,
        `a_f_o_genstreet_01`,
        `a_f_y_bevhills_02`,
        `a_f_y_business_03`,
        `a_f_y_epsilon_01`,
        `a_f_y_golfer_01`,
        `a_f_y_soucent_01`,
        `a_f_y_gencaspat_01`,
    }
}

Config.LaundryShops = { --all GTA laundry places (may missed some)
    vector4(222.56, -1842.66, 27.12, 144.56),
    vector4(316.33, -1098.86, 29.4, 272.62),
    vector4(847.08, -112.67, 79.77, 109.79),
    vector4(1142.68, -986.87, 45.9, 93.4),
    vector4(434.34, -2088.51, 21.56, 48.53),
    vector4(191.36, -1996.08, 18.61, 232.41)
}

Last updated