-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.lua
More file actions
20 lines (16 loc) · 749 Bytes
/
config.lua
File metadata and controls
20 lines (16 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
config = {
-- Particle Reference: --
-- https://vespura.com/fivem/particle-list/ --
-- Config Info: --
-- "dict" = The dictionary with the particle you want. --
-- "name" = The name of the particle you want. --
-- "scale" = The scale of the particle you want. (Default = 1.0) --
-- "coords" = Contains the x,y,z, coordinates for the particle. --
-- "x" = The "X" coordinate of the particle. --
-- "y" = The "Y" coordinate of the particle. --
-- "z" = The "Z" coordinate of the particle. --
particles = {
{dict = 'core', name = 'ent_amb_smoke_chicken', scale = 1.0, coords = {x = -2020.85, y = -1038.95, z = 1.00}},
{dict = 'core', name = 'ent_amb_smoke_foundry', scale = 1.0, coords = {x = -2069.53, y = -1023.06, z = 10.00}}
}
}