Chopshop Locations


Chopshop Locations (chopshoplocations.lua)

The Chopshop system defines where vehicles can be taken for dismantling. Each location is set using a vector4 (X, Y, Z, Heading). You can add multiple chopshops by listing more coordinates.


Example Config

Config.Chopshoplocations = {
    vector4(2734.2058, 4293.2988, 47.6991, 270.2672),
}

Explanation of Settings

  • vector4(x, y, z, h)

    • x, y, z β†’ world coordinates for the chopshop.

    • h β†’ heading (direction the vehicle should face when placed).


Adding Multiple Chopshops

Simply add more entries separated by commas:


Notes

  • You can place chopshops anywhere on the map by using /coords or a coordinate-grabber script.

  • Vehicles will spawn facing the heading you set.

  • Multiple chopshops allow different gangs or crews to control different regions of the map.


Last updated