Add more locations
Here are explanations on how to add new Processing and Trucking Locations!
Trucking Locations
Within the config file, you will find a table called Trucking.
1. Understand the Structure:
Each location within the script has several components:
coords
: The coordinates for the delivery point.blip
: Visual marker on the map.ped
: Information about NPCs (non-playable characters) that spawn at the location.spawnLocations
: Where the trucks spawn.deliveryLocations
: Random locations for truck deliveries.receive
: Rewards for completing deliveries.vehicle
: The model of the truck used for the delivery.policeAlert
: Determines whether the police get notified about the delivery.cooldown
: The time between deliveries for this location.
2. Adding a New Location:
To add a new delivery location, you’ll need to copy the structure of an existing location and customize it with new coordinates, spawn points, and delivery points.
Example: Adding a New Location
Add the new location inside the Locations
array like this:
Processing Locations
Within the config file you will find a table called Processing.
1. Understand the Structure:
Each processing location has several components:
coords
: The coordinates for the processing location.blip
: The visual marker that shows the location on the map.crafting
: Details about the crafting process, including the items required and the animation to use.
2. Adding a New Location:
To add a new processing location, you need to copy the structure of the existing location and customize it with new coordinates and crafting details.
Example: Adding a New Processing Location
Add the new location inside the Locations
array like this:
Last updated