Füsti docs
DiscordGithub
  • Füsti's scripts
  • 🧟‍♂️fusti_zombie
    • Using the export
      • Setting up zone types
      • Setting up blips
      • Setting up zombies
  • 🪚fusti_jobcreator
    • Setting up the config
      • Setting up mainPlace
      • Setting up vehicles
      • Setting up actions
      • Picture of add-on vehicles
  • 🚙FUSTI_VEHICLESHOP
    • Setting up the config
      • Creating categories
      • Setting up the client side handlers and functions
      • Setting up the server side handlers and functions
      • Creating shops
      • Creating vehicles
Powered by GitBook
On this page

Was this helpful?

  1. fusti_zombie
  2. Using the export

Setting up zone types

There are currently two supported zone types, 'box' and 'sphere'

Using a box type need some parameters to add:

boxData = {
    coords = {
        {
            position = vec3(2384.6589, 3086.5298, 48.1531), -- position of the box
            size = vec3(100,100,100),  -- size of the box
            rotation = 0 -- rotation of the box
        }
    }
}

If you use sphere:

sphereData = {
    coords = {
        {
            position = vec3(2176.8569, 3182.2786, 50.5334), -- position of the sphere
            radius = 50.0 -- value of the circle's radius
        }
    }
}
PreviousUsing the exportNextSetting up blips

Last updated 1 year ago

Was this helpful?

🧟‍♂️