Add more locations
Here are explanations on how to add new Processing and Trucking Locations!
Plane Delivery Locations
In the config file, you'll find a table called PlaneLocations
. This section explains how to add new plane delivery locations for coke transportation and how to modify existing ones.
1. Understand the Structure:
Each plane delivery location has several key components:
planeModel: The model of the plane used for the delivery.
target: The interaction point where players can start the delivery.
coords: The coordinates of the delivery start location (vector4 format).
label/icon: Details for displaying the interaction label and icon.
blip: The visual map marker for the delivery start location.
enabled: Set to true or false to show/hide the blip.
name/sprite/scale/col: Customize the appearance of the blip on the map.
ped: A non-player character (NPC) that can spawn at the delivery start location.
enabled: True to spawn a ped, false to disable.
coords: The coordinates where the ped spawns.
model: The model of the ped.
flightLocations: Contains start and finish points for the plane delivery route. Multiple routes can be added.
start: The plane's starting point, including the coke table location and plane spawn point.
finish: The delivery point, including where the ped is to receive the delivery and where to park the plane.
receive: Specifies the rewards (e.g., coke bricks) for successfully completing a delivery.
Customize the items and the amount received per delivery.
policeAlert: Police alert settings for the delivery.
enabled: Set to true to enable police alerts during deliveries.
onPlaneAltitude: The altitude of the plane at which police alerts are triggered.
time: How often police are notified of the vehicle's location (in seconds).
cooldown: Cooldown settings to prevent immediate re-use of the location after a delivery.
enabled: Set to true to enable the cooldown.
time: Time in minutes before the location can be used again.
2. Adding a New Plane Delivery Location:
To add a new delivery location, copy the structure of an existing location and modify it with new coordinates, flight locations, and other details.
Example: Adding a New Plane Delivery Location
Processing Locations
Within the config file, you'll find a table called ProcessingLocations
. This section will guide you on how to add new processing locations to the script.
1. Understand the Structure:
Each processing location has several key components:
target: The in-game interaction point where players can process items.
coords: The coordinates of the processing location (vector4 format).
width/length: The size of the interaction area.
icon/label: Details for displaying interaction icons and labels.
blip: The map marker that shows the location on the map.
enabled: Set to true or false to show/hide the marker.
name: The name that appears on the map.
sprite, scale, col: Customize the appearance of the blip on the map.
crafting: Contains information about the crafting process, including the required items and animations.
Items: Specifies the items needed for crafting and the result of crafting.
Menu: Sets the header of the crafting menu.
Progress: Details about the progress bar, including time, labels, and animations used during crafting.
2. Adding a New Processing Location:
To add a new processing location, copy the structure of an existing location and customize it with the new coordinates, crafting details, and other parameters.
Example: Adding a New Processing Location
Add the new location inside the ProcessingLocations
table as shown below:
Last updated
Was this helpful?