Paid Scripts
Here is where you can configure the license key gathered from https://license.simpledevelopments.org/
Config.LicenseKey = 'LICENSE-KEY-HERE'Below is the money system built into the system, the script only uses SimpleBanking.
Config.useMoney = {
enabled = true, -- Set this to true if you want to use Monie system
resourceName = 'SimpleBanking' -- Name of money script being used. (Only support SimpleBanking)
}Below is the location for the ped where you'd start your shift, and what the ped looks like overall.
Config.Peds = {{
model = 's_m_y_garbage',
coords = {x = -322.24, y = -1546.02, z = 30.02, w = 294.97},
}}Below is where you would set the location for returning the truck after a shift.
Config.ReturnZone = {
x = -316.5120,
y = -1539.1029,
z = 27.3890,
radius = 10.0
}Below are the general settings for the overall job, with the number of bags per stop, the worth, etc.
Config.TruckPrice = 250
Config.StopsPerRoute = 5
Config.RequireAllStopsForDeposit = true
Config.BagUpperWorth = 100
Config.BagLowerWorth = 50
Config.MinBagsPerStop = 2
Config.MaxBagsPerStop = 6Configuration for the locations of the overall depot, truck storage, and trash cans around the city.
Config.Locations = {
["main"] = {
label = "Garbage Depot",
coords = {
x = -313.84,
y = -1522.82,
z = 27.56
}
},
["vehicle"] = {
label = "Garbage Truck Storage",
coords = {
[1] = {
x = -333.84,
y = -1527.28,
z = 27.28,
w = 1.97
},
[2] = {
x = -327.55,
y = -1527.69,
z = 27.25,
w = 359.43
}
}
},
["trashcan"] = {
[1] = {
name = "forumdrive",
coords = {
x = -168.07,
y = -1662.8,
z = 33.31,
w = 137.5
}
},
[2] = {
name = "grovestreet",
coords = {
x = 118.06,
y = -1943.96,
z = 20.43,
w = 179.5
}
},
[3] = {
name = "jamestownstreet",
coords = {
x = 297.94,
y = -2018.26,
z = 20.49,
w = 119.5
}
},
[4] = {
name = "davisave",
coords = {
x = 424.98,
y = -1523.57,
z = 29.28,
w = 120.08
}
},
[5] = {
name = "littlebighornavenue",
coords = {
x = 488.49,
y = -1284.1,
z = 29.24,
w = 138.5
}
}
}
}Below is the config for the type of trash vehicle used, and the uniform numbers for what would be spawned on the player if they choose to wear the company uniform.
Config.Vehicle = 'trash2'
Config.Uniforms = {
male = {
['Hats'] = {
id = -1,
texture = 0
},
['Masks'] = {
id = 0,
texture = 0
},
['Tops'] = {
id = 55,
texture = 0
},
['Undershirts'] = {
id = 15,
texture = 0
},
['Bags'] = {
id = 0,
texture = 0
},
['Accessories'] = {
id = 0,
texture = 0
},
['Overlays'] = {
id = 0,
texture = 0
},
['Pants'] = {
id = 34,
texture = 0
},
['Shoes'] = {
id = 25,
texture = 0
},
['Arms'] = {
id = 36,
texture = 0
}
},
female = {
['Hats'] = {
id = -1,
texture = 0
},
['Masks'] = {
id = 0,
texture = 0
},
['Tops'] = {
id = 48,
texture = 0
},
['Undershirts'] = {
id = 15,
texture = 0
},
['Bags'] = {
id = 0,
texture = 0
},
['Accessories'] = {
id = 0,
texture = 0
},
['Overlays'] = {
id = 0,
texture = 0
},
['Pants'] = {
id = 34,
texture = 0
},
['Shoes'] = {
id = 27,
texture = 0
},
['Arms'] = {
id = 42,
texture = 0
}
}
}