This repository was archived by the owner on Apr 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
51 lines (47 loc) · 2.32 KB
/
config.lua
File metadata and controls
51 lines (47 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Config = {}
Config.Language = 'en' -- Setup more languages in locales.lua
Config.Debug = false -- Set to true to enable debug messages
-- Item Table
Config.Items = {
['main'] = {
{ item = 'ammo-9', label = '9mm Ammo', icon = 'nui://ox_inventory/web/images/ammo-9.png' },
},
['swat'] = {
{ item = 'ammo-rifle', label = '5.56x45mm', icon = 'nui://ox_inventory/web/images/ammo-rifle.png' },
{ name = 'at_flashlight', label = 'Tactical Flashlight', icon = 'nui://ox_inventory/web/images/at_flashlight.png' },
{ name = 'bodyarmor_3', label = 'Ballistic Plate Carrier Vest', icon = 'nui://ox_inventory/web/images/bodyarmor_3.png' },
{ name = 'ammo-9', label = '9mm Ammo', icon = 'nui://ox_inventory/web/images/ammo-9.png' },
}
}
-- Weapon Table
Config.Weapons = {
['main'] = {
{ item = 'weapon_combatpistol', label = 'Combat Pistol', icon = 'nui://ox_inventory/web/images/weapon_combatpistol.png' },
{ item = 'weapon_stungun', label = 'TASER', icon = 'nui://ox_inventory/web/images/weapon_stungun.png' },
{ item = 'weapon_nightstick', label = 'Baton', icon = 'nui://ox_inventory/web/images/weapon_nightstick.png' },
{ item = 'weapon_flashlight', label = 'Flashlight', icon = 'nui://ox_inventory/web/images/weapon_flashlight.png' },
},
['swat'] = {
{ item = 'weapon_carbinerifle', label = 'Carbine Rifle', icon = 'nui://ox_inventory/web/images/WEAPON_CARBINERIFLE.png' },
}
}
Config.Armor = {
['main'] = {
{ armor = 50, label = 'Stab Proof Vest', icon = 'nui://ox_inventory/web/images/bodyarmor_1.png' },
},
['swat'] = {
{ armor = 100, label = 'Ballistic Plate Carrier Vest', icon = 'nui://ox_inventory/web/images/bodyarmor_3.png' },
}
}
Config.Passwords = {
['swat'] = 'CHANGE_ME', -- SWAT PASSWORD
}
Config.UseTarget = true -- Set to false to use markers
Config.Locations = {
['main'] = {
{ coords = vec3(437.440, -983.365, 34.087), icon = 'gun', job = 'police', label = 'Open Armory' }, -- MRPD MAIN | CHANGE AND ADD MORE LOCATIONS
},
['swat'] = {
{ coords = vec3(441.991, -988.187, 34.298), icon = 'person-rifle', job = 'police', label = 'Open SWAT Armory'}, -- MRPD SWAT | CHANGE AND ADD MORE LOCATIONS
},
}