The Davis Laundromat is located on Carson Avenue in South Los Santos.
Coords : 222.59, -1842.43, 27.11
This package includes
- The Davis Laundromat Interior:
- Main landromat room
- Staff room
- Toilets
- Hidden money laundering room
- A free money laundering script.
Script config
Config = {}
--[[ Locale ]]
Config.Locale = 'en' -- Available locales: "en", "fr". You can add your own in /shared/locales/ directory.
--[[ Ox Target ]]
Config.EnableOxTarget = false -- If enabled, the script will use ox_target instead of game marker.
--[[ Cops ]]
Config.CopJobs = { 'police', 'sheriff' } -- All cop jobs that will be used to get how many cops are online.
Config.RequiredCops = 0 -- How many cops is required for the player to be able to start a money laundering.
--[[ Whitelist ]]
Config.AllowEveryoneToUseDryers = true -- Enable this to allow everyone to start a money laundering.
Config.WhitelistedJobs = {
-- Job name = Required job rank
--['jobname'] = 2,
}
--[[ Laundering Time ]]
-- If "LaunderingTimeBasedOnAmount" is sets to true, defines the time for how many seconds $100 will take to be laundered.
-- Example: If you set the config "LaunderingTime" to 20, it will take ~33 minutes to launder $10,000. Formula: (AmountToLaunder / 100) * LaunderingTime.
-- If "LaunderingTimeBasedOnAmount" is set to false, defines the time in seconds for how long a money laundering will take.
-- Example: If you set the config "LaunderingTime" to 21600, it will take 6 hours to complete a launder no matter the amount specified.
Config.LaunderingTimeBasedOnAmount = true
Config.LaunderingTime = 20 -- In seconds
--[[ Cleanup Time ]]
-- This option prevent the dryer from being blocked indefinitely if the player nether take back the laundered money.
Config.CleanupTime = 168 * 60 * 60 -- Time in seconds which determines when a dryer will be cleaned up.
--[[ Dryers ]]
Config.MinAmount = 100 -- Minimum amount required in a dryer.
Config.MaxAmount = 999999 -- Maximum amount allowed in a dryer.
Config.TaxPercentage = 10 -- The tax percentage that will be taken on the laundered amount. (0 to disable).
Config.AllowPlayerToStartMultipleDryers = false -- Determines if a player is allowed to have multiple dryers running simultaneously.
Config.Dryers = {
{
name = 'dryera',
enabled = true,
coords = vec3(207.25, -1844.93, 25.20),
target = {
coords = vec3(206.7, -1844.5, 25.3),
radius = 0.5
}
},
{
name = 'dryerb',
enabled = true,
coords = vec3(208.28, -1843.61, 25.20),
target = {
coords = vec3(207.8, -1843.15, 25.35),
radius = 0.5
}
},
{
name = 'dryerc',
enabled = true,
coords = vec3(209.40, -1842.27, 25.20),
target = {
coords = vec3(208.9, -1841.85, 25.3),
radius = 0.5
}
},
{
name = 'dryerd',
enabled = true,
coords = vec3(210.66, -1847.07, 25.20),
target = {
coords = vec3(211.15, -1847.55, 25.3),
radius = 0.5
}
},
{
name = 'dryere',
enabled = true,
coords = vec3(211.70, -1845.80, 25.20),
target = {
coords = vec3(212.25, -1846.2, 25.3),
radius = 0.5
}
},
{
name = 'dryerf',
enabled = true,
coords = vec3(212.80, -1844.52, 25.20),
target = {
coords = vec3(213.3, -1844.9, 25.3),
radius = 0.5
}
},
}
Notes
This package is protected by the FiveM escrow system.
You can modify the dryers states of the hidden room at anytime by using the integrated script (See README.md).
|-------------------------------------|----------------------------|
| Code is accessible | No |
| Subscription-based | No |
| Lines (approximately) | 900 |
| Requirements | N/A |
| Support | Yes/No |