Files
Elite-Gaming-FiveM/resources/Interaction-Menu/config.lua
T
2025-11-09 15:04:42 -08:00

804 lines
34 KiB
Lua

--[[
───────────────────────────────────────────────────────────────
SEM_InteractionMenu (config.lua) - Created by Scott M
Current Version: v1.7.1 (Sep 2021)
Support: https://semdevelopment.com/discord
───────────────────────────────────────────────────────────────
]]
Config = {}
---------------------------------------------------------------
-- --
-- Menu Features --
-- --
---------------------------------------------------------------
--This is how the version check will be displayed in the server console
--Full = 0 [Default] | Simple = 1 | Disabled = 2
Config.VersionChecker = 1
--This is how you open the menu either via a command or button
--Button = 0 [Default] | Command = 1
Config.OpenMenu = 0
--This is the button that will open the menu (If chosen at Config.OpenMenu)
--Default = 244 [M] | To change the button check out https://docs.fivem.net/game-references/controls/
--Controller Support for this resource is DISABLED!
Config.MenuButton = 166
--This is the command that will open the menu (If chosen at Config.OpenMenu)
Config.Command = 'policemenu'
--This is the width of the menu when open
--Default = 80
Config.MenuWidth = 80
--This is the position of the menu when open
--Left = 0 [Default] | Right = 1
Config.MenuOrientation = 0
--This is the title of the menu dispalyed
--Default = The default title of the menu is 'Interaction Menu'
--Player Name = This is the name of the player
--Custom = This is a custom title set by you at Config.MenuTitleCustom
--Default = 0 [Default] | Player Name = 1 | Custom = 2
Config.MenuTitle = 0
--This is the custom title you can set for the menu (If chosen at Config.MenuTitle)
Config.MenuTitleCustom = 'Custom Menu Title'
---------------------------------------------------------------
-- --
-- General/Shared Features --
-- --
---------------------------------------------------------------
--This determines if the onduty password is active, if false the password will NOT be required when doing the command
Config.OndutyPSWDActive = false
--This is the onduty password, only people with the password can access the menu if chosen at Config.LEOAccess/Config.FireAccess
Config.OndutyPSWD = 'OndutyPSWD'
--This determines if the distance between the player using the command and the person being cuffed/dragged is checked
Config.CommandDistanceChecked = true
--This determines how close you need to be to cuff/drag someone using their ID
--Default = 50
Config.CommandDistance = 50
--This determines if the stations section of the LEO & Fire menu will be visible
--Station Locations can be set at Config.LEOStations & Config.FireStations
Config.ShowStations = true
--This determines if the stations menu will have a teleport section, if set to false ONLY the waypoint option will be visible
Config.AllowStationTeleport = true
--This determines if the stations set in the Config.LEOStations & Config.FireStations have blips on the map
Config.DisplayStationBlips = true
--This sets where the station blips will be displayed (Mini Map / Main Map)
--On Mini Map & Main Map = 0 [Default] | Only on Main Map = 1 | Only on Mini Map = 2
Config.StationBlipsDispalyed = 0
--These are the props avaliable via the LEO & Fire menus
Config.Props = {
--[[
EXAMPLE:
{name = 'a', spawncode = 'b'},
────────────────────────────────────────────────────────────────
'a' is the title that shows in the menu
'b' is the spawn code for prop that will be spawned
]]
{name = 'Police Barrier', spawncode = 'prop_barrier_work05'},
{name = 'Barrier', spawncode = 'prop_barrier_work06a'},
{name = 'Traffic Cone', spawncode = 'prop_roadcone01a'},
{name = 'Cone', spawncode = 'prop_roadcone02b'},
{name = 'Work Barrier', spawncode = 'prop_mp_barrier_02b'},
{name = 'Work Barrier 2', spawncode = 'prop_barrier_work01a'},
{name = 'Lighting', spawncode = 'prop_worklight_03b'},
{name = 'Tent', spawncode = 'prop_gazebo_02'},
}
---------------------------------------------------------------
-- --
-- LEO Features --
-- --
---------------------------------------------------------------
--This sets who can access the LEO menu
--!!! NOTE: If LEO Peds is selected then onlys peds from the Config.LEOUniforms will have access to the menu
--Disabled = 0 | Everyone = 1 [Default] | LEO Peds = 2 | Onduty Command = 3 | Ace Permissions = 4
Config.LEOAccess = 1
--This determines if the radar button will be displayed
--NOTE: Wraith Radar is the ONLY radar script that works with the menu at the moment (This also includes any editied version) - Both his old and new radar are compatiable, link below
--[[
Links:
WraithRS | Advanced Radar System: https://forum.cfx.re/t/release-wraithrs-advanced-radar-system-1-0-2/48543
Ascaped Plate Reader Edit: https://forum.cfx.re/t/release-edit-wraithrs-new-plate-reader/147269
Wraith ARS 2X Radar & Plate Reader: https://forum.cfx.re/t/release-wraith-ars-2x-police-radar-and-plate-reader-v1-2-4/1058277
**Other modified version of these resoruce should work**
]]
--Disabled = 0 [Default] | Wraith ARS 2x = 1 | WraithRS = 2
Config.Radar = 0
--This determines when someone if cuffed if they can enter or exit a vehicle
Config.VehEnterCuffed = false
--This determines if you need to unrack the carbine rifle of pumpshotun from a vehicle to obtain it
--Disabled = 0 | Constant = 1 | Free-hand = 2 [Default]
--Constant = Once unracked it is unable to be removed from hand until racked again in a vehicle
--Free-hand = Once unracked it is able to be removed from hand
Config.UnrackWeapons = 2
--This sets if the Jail functions will be visible in the menu
Config.LEOJail = true
--This is the max time that someone can be jailed for (Seconds)
Config.MaxJailTime = 300
--These is the location of the jail and release point
Config.JailLocation = {
Jail = {x = 1675.28, y = 2648.55, z = 45.56, h = 49.50},
Release = {x = 1851.24, y = 2585.77, z = 45.67, h = 271.44},
}
--This determines if the backup section of the LEO menu will be visible
Config.DisplayBackup = true
--This sets the time between the blip being created and removed (Minutes)
--Default = 5
Config.BackupBlipTimeout = 5
--This determines if the LEO props menu will be available
Config.DisplayProps = true
--These are the station available via the station menu
Config.LEOStations = {
{name = 'Sandy Shores', coords = {x = 1850.04, y = 3679.36, z = 34.26 , h = 208.84}},
{name = 'Paleto Bay', coords = {x = -438.51, y = 6017.93, z = 31.49 , h = 352.90}},
{name = 'Mission Row', coords = {x = 432.08, y = -985.25, z = 30.71 , h = 44.02}},
{name = 'Davis', coords = {x = 373.99, y = -1607.59, z = 29.29 , h = 192.15}},
{name = 'Vinewood', coords = {x = 638.03, y = -1.85, z = 82.78 , h = 290.18}},
{name = 'Vespucci', coords = {x = -1090.87, y = -807.29, z = 19.26 , h = 64.92}},
{name = 'NOOSE Headquarters', coords = {x = 2504.29, y = -384.11, z = 94.12, h = 264.01}},
}
--This determines if the LEO Unfiroms section will be visible
Config.DisplayLEOUniforms = true
--These are the LEO uniforms that are available via the loadouts - these will also be the uniforms which will give access to the LEO menu if that option if chosen at Config.LEOAccess
Config.LEOUniforms = {
--[[
EXAMPLE:
{name = 'a', spawncode = 'b'},
────────────────────────────────────────────────────────────────
'a' is the title that shows in the menu
'b' is the spawn code for uniform that will be spawned
]]
{name = 'LSPD', spawncode = 's_m_y_cop_01'},
{name = 'BCSO', spawncode = 's_m_y_sheriff_01'},
{name = 'SAHP', spawncode = 's_m_y_hwaycop_01'},
{name = 'SWAT', spawncode = 's_m_y_swat_01'},
{name = 'Undercover', spawncode = 's_m_m_ciasec_01'},
}
--This determines if the LEO Loadouts section will be visible
Config.DisplayLEOLoadouts = true
--These are the weapon loadouts available via the loadouts
Config.LEOLoadouts = {
--[[
EXAMPLE:
a = {
{weapon = 'b', components = 'c', 'c'},
},
────────────────────────────────────────────────────────────────
'a' is the title of the Loadout
'b' is the weapon which you want to be added [A link to weapon names can be found below]
'c' is the components which you want to be added to the weapon [A link to available weapon components can be found below]
Weapon Names https://forum.fivem.net/t/list-of-weapon-spawn-names-after-hours/90750
Weapon Components https://wiki.rage.mp/index.php?title=Weapons_Components
]]
['Standard'] = {
{weapon = 'weapon_flashlight', components = {''}},
{weapon = 'weapon_combatpistol', components = {'component_at_pi_flsh'}},
{weapon = 'weapon_stungun', components = {''}},
{weapon = 'weapon_carbinerifle', components = {'component_at_ar_flsh', 'component_at_scope_medium', 'component_at_ar_afgrip'}},
{weapon = 'weapon_pumpshotgun', components = {'component_at_ar_flsh'}},
{weapon = 'weapon_fireextinguisher', components = {''}},
{weapon = 'weapon_flare', components = {''}},
},
['SWAT'] = {
{weapon = 'weapon_flashlight', components = {''}},
{weapon = 'weapon_combatpistol', components = {'component_at_pi_flsh'}},
{weapon = 'weapon_stungun', components = {''}},
{weapon = 'weapon_smg', components = {'component_at_ar_flsh', 'component_ar_scope_macro_02'}},
{weapon = 'weapon_carbinerifle', components = {'component_at_ar_flsh', 'component_at_scope_medium', 'component_at_ar_afgrip'}},
{weapon = 'weapon_pumpshotgun', components = {'component_at_ar_flsh'}},
{weapon = 'weapon_sniperrifle', components = {'comonent_at_scope_max'}},
{weapon = 'weapon_bzgas', components = {''}},
{weapon = 'weapon_fireextinguisher', components = {''}},
{weapon = 'weapon_flare', components = {''}},
}
}
--This determines if the LEO vehicles section if available
Config.ShowLEOVehicles = true
--This determines if the vehicle spawn codes are displayed next to the name
Config.ShowLEOSpawnCode = true
--These are the LEO vehicles which are avaiable via the menu
Config.LEOVehiclesCategories = {
--[[
EXAMPLE:
['a'] = {
{name = 'b', spawncode = 'c', livery = d, extras = {e, e}},
}
────────────────────────────────────────────────────────────────
'a' is the title of the Category
'b' is the title of the vehicle that shows in the menu
'c' is the spawn code for vehicle that will be spawned
d is the number of the livery which you want it to spawn with
e is the number(s) of extra(s) which you want it to spawn with
**NOTE: Sometimes the sections do NOT display if the order in the config below**
]]
['lapd'] = {
{name = 'LAPD', spawncode = 'lapd09charger1'},
{name = 'LAPD', spawncode = 'lapd09charger2'},
{name = 'LAPD', spawncode = 'lapd09dual'},
{name = 'LAPD', spawncode = 'lapd14charger'},
{name = 'LAPD', spawncode = 'lapd14chargertd'},
{name = 'LAPD', spawncode = 'metrocharger'},
{name = 'LAPD', spawncode = 'lapdcvpialpr'},
{name = 'LAPD', spawncode = 'lapdcvpithermal'},
{name = 'LAPD', spawncode = '2005LAPDCVPI_Hybrid1'},
{name = 'LAPD', spawncode = '2005LAPDCVPI_Hybrid2'},
{name = 'LAPD', spawncode = '2005LAPDCVPI_HybridH'},
{name = 'LAPD', spawncode = '2008LAPDCVPI_77th1'},
{name = 'LAPD', spawncode = '2008LAPDCVPI_77th2'},
{name = 'LAPD', spawncode = '2008LAPDCVPI_Hardtop1'},
{name = 'LAPD', spawncode = '2008LAPDCVPI_Hardtop2'},
{name = 'LAPD', spawncode = '2008LAPDCVPI_Hybrid1'},
{name = 'LAPD', spawncode = '2008LAPDCVPI_Hybrid2'},
{name = 'LAPD', spawncode = '2008LAPDCVPI_HybridT'},
{name = 'LAPD', spawncode = '2008LAPDCVPI_Traffic1'},
{name = 'LAPD', spawncode = '08hybridcvpi1'},
{name = 'LAPD', spawncode = '08hybridcvpi2'},
{name = 'LAPD', spawncode = '08lapdcvpi1'},
{name = 'LAPD', spawncode = '08lapdcvpi2'},
{name = 'LAPD', spawncode = '08lapdcvpighost'},
{name = 'LAPD', spawncode = '08lapdcvpiharbor'},
{name = 'LAPD', spawncode = '08lapdcvpisecsd'},
{name = 'LAPD', spawncode = '08lapdsap'},
{name = 'LAPD', spawncode = 'lapdtahoe08'},
{name = 'LAPD', spawncode = 'lapd16fpiu'},
{name = 'LAPD', spawncode = 'lapd16fpiu2'},
{name = 'LAPD', spawncode = 'lapd16fpiusecsd'},
{name = 'LAPD', spawncode = 'lapd16fpiutraffic'},
{name = 'LAPD', spawncode = 'lapd16fpiutraffic2'},
{name = 'LAPD', spawncode = 'metro16fpiu'},
{name = 'LAPD', spawncode = 'metro16fpiu2'},
{name = 'LAPD', spawncode = 'metro16fpiu3'},
{name = 'LAPD', spawncode = 'lapdfpis'},
{name = 'LAPD', spawncode = 'lapdfpis2'},
{name = 'LAPD', spawncode = 'lapdfpis3'},
{name = 'LAPD', spawncode = 'LAPD12000'},
{name = 'LAPD', spawncode = '17colorado'},
{name = 'LAPD', spawncode = 'hybrid20fpiu'},
{name = 'LAPD', spawncode = 'lapd20fpiu'},
{name = 'LAPD', spawncode = 'lapd20fpiu2'},
{name = 'LAPD', spawncode = 'lapd20fpiutraffic'},
{name = 'LAPD', spawncode = 'lapd20fpiutraffic2'},
{name = 'LAPD', spawncode = 'SHOP00000'},
{name = 'LAPD', spawncode = 'SHOP80693'},
{name = 'LAPD', spawncode = 'SHOP81622'},
{name = 'LAPD', spawncode = 'SHOP83039'},
{name = 'LAPD', spawncode = 'SHOP89471'},
{name = 'LAPD', spawncode = 'SHOPFPIS'},
{name = 'LAPD', spawncode = 'BombSquadF450'},
{name = 'LAPD', spawncode = 'lapdurango'},
},
['LASD'] = {
{name = 'LASD', spawncode = 'lasd1990caprice'},
{name = 'LASD', spawncode = 'lasd1991caprice'},
{name = 'LASD', spawncode = 'lasd1992'},
{name = 'LASD', spawncode = 'lasd1993caprice'},
{name = 'LASD', spawncode = 'lasd1993capricemerger'},
{name = 'LASD', spawncode = 'lasd1993capriceparamount'},
{name = 'LASD', spawncode = 'lasd1996caprice'},
{name = 'LASD', spawncode = 'lasd1996capriceamber'},
{name = 'LASD', spawncode = 'lasd1996capricefull'},
{name = 'LASD', spawncode = 'LASDSEDANSford'},
{name = 'LASD', spawncode = 'lasdtaurus'},
{name = 'LASD', spawncode = 'lacpvic'},
{name = 'LASD', spawncode = 'lasdcrownvic'},
{name = 'LASD', spawncode = 'lasdlithium'},
{name = 'LASD', spawncode = 'lasdparamount'},
{name = 'LASD', spawncode = 'lasdsd7100'},
{name = 'LASD', spawncode = 'lasd05cvpi'},
{name = 'LASD', spawncode = 'lasd06cvpi'},
{name = 'LASD', spawncode = 'lasd06cvpicarson'},
{name = 'LASD', spawncode = 'lasd06cvpisd7100'},
{name = 'LASD', spawncode = 'lasd08cvpi'},
{name = 'LASD', spawncode = 'lasd08cvpilomita'},
{name = 'LASD', spawncode = 'lasd08cvpitransit'},
{name = 'LASD', spawncode = 'lasd1997'},
{name = 'LASD', spawncode = 'lasd1997amber'},
{name = 'LASD', spawncode = 'lasd1997paramount'},
{name = 'LASD', spawncode = 'lasd1998'},
{name = 'LASD', spawncode = 'lasd1998compton'},
{name = 'LASD', spawncode = 'lasd1998hg'},
{name = 'LASD', spawncode = 'lasd1998hub'},
{name = 'LASD', spawncode = 'lasd1998temple'},
{name = 'LASD', spawncode = 'lasd1999'},
{name = 'LASD', spawncode = 'lasd2000'},
{name = 'LASD', spawncode = 'lasd2000stage'},
{name = 'LASD', spawncode = 'lasd2000two'},
{name = 'LASD', spawncode = 'lasd2001'},
{name = 'LASD', spawncode = 'lasd2002'},
{name = 'LASD', spawncode = 'lasd2003'},
{name = 'LASD', spawncode = 'LASDSEDANSdodge'},
{name = 'LASD', spawncode = 'lasdchrg14'},
{name = 'LASD', spawncode = 'lasd18chrg'},
{name = 'LASD', spawncode = 'LASDSEDANSdodge'},
{name = 'LASD', spawncode = 'fordexplorerLASDS'},
{name = 'LASD', spawncode = 'lasd13fasap'},
{name = 'LASD', spawncode = 'lasd13fpiu1'},
{name = 'LASD', spawncode = 'lasd13fpiu2'},
{name = 'LASD', spawncode = 'lasd13fpiu3'},
{name = 'LASD', spawncode = 'lasd13fpiu4'},
{name = 'LASD', spawncode = 'lasd13fpiu5'},
{name = 'LASD', spawncode = 'lasd13fsfpiu'},
{name = 'LASD', spawncode = 'lasd13funm'},
{name = 'LASD', spawncode = 'lasd13funm2'},
{name = 'LASD', spawncode = 'lasd13funm3'},
{name = 'LASD', spawncode = 'lasd13funm4'},
{name = 'LASD', spawncode = 'lasd16asap'},
{name = 'LASD', spawncode = 'lasd16asapb'},
{name = 'LASD', spawncode = 'lasd16asapc'},
{name = 'LASD', spawncode = 'lasd16asapd'},
{name = 'LASD', spawncode = 'lasd16fpiu'},
{name = 'LASD', spawncode = 'lasd16fpiub'},
{name = 'LASD', spawncode = 'lasd16rfr'},
{name = 'LASD', spawncode = 'lasd16rfrb'},
{name = 'LASD', spawncode = 'chevytahoe'},
{name = 'LASD', spawncode = 'lasd08tahoe'},
{name = 'LASD', spawncode = 'lasd08tahoe2'},
{name = 'LASD', spawncode = 'lasd14tahoe'},
{name = 'LASD', spawncode = 'lasd15tahoe'},
{name = 'LASD', spawncode = 'lasd15tahoeb'},
{name = 'LASD', spawncode = 'lasd15k9'},
{name = 'LASD', spawncode = 'lasd15k9b'},
{name = 'LASD', spawncode = 'lasd20tahoe'},
{name = 'LASD', spawncode = 'lasd20tfs'},
{name = 'LASD', spawncode = 'lasd20k9'},
{name = 'LASD', spawncode = 'lasd20lp'},
{name = 'LASD', spawncode = 'lasd23tahoe'},
{name = 'LASD', spawncode = 'lasd23k9t'},
{name = 'LASD', spawncode = 'lasd22tunm'},
{name = 'LASD', spawncode = '19Yukonrb'},
{name = 'LASD', spawncode = '19yukonslick'},
{name = 'LASD', spawncode = 'lasd1999tahoe'},
{name = 'LASD', spawncode = 'chevytahoe'},
{name = 'LASD', spawncode = 'LASDTRUCKS'},
{name = 'LASD', spawncode = '23gmcleo'},
{name = 'LASD', spawncode = '23gmcleoslick'},
{name = 'LASD', spawncode = '21f150'},
{name = 'LASD', spawncode = '22f150rb'},
{name = 'LASD', spawncode = '23f150pr'},
{name = 'LASD', spawncode = '24tactrd'},
{name = 'LASD', spawncode = 'f350bubba'},
{name = 'LASD', spawncode = '14F250'},
{name = 'LASD', spawncode = '23f150st'},
{name = 'LASD', spawncode = 'Commandcenter'},
{name = 'LASD', spawncode = 'commandtruck'},
{name = 'LASD', spawncode = 'LASDTRUCKS'},
{name = 'LASD', spawncode = 'LASDUNMARK'},
{name = 'LASD', spawncode = 'lasdurango'},
{name = 'LASD', spawncode = 'sebcharger'},
{name = 'LASD', spawncode = 'sebexp'},
{name = 'LASD', spawncode = 'sebexp2'},
{name = 'LASD', spawncode = 'sebtahoe2'},
{name = 'LASD', spawncode = 'lasdcharger'},
{name = 'LASD', spawncode = 'lasdfpiu'},
{name = 'LASD', spawncode = 'lasdsap'},
{name = 'LASD', spawncode = 'lasdtaurus'},
{name = 'LASD', spawncode = 'sebtahoe'},
{name = 'LASD', spawncode = '24tactrd'},
{name = 'LASD', spawncode = 'LASDUNMARK'},
},
['CHP'] = {
{name = 'CHP', spawncode = 'chp23charg'},
{name = 'CHP', spawncode = 'chp23charggr'},
{name = 'CHP', spawncode = 'chp20fpiup'},
{name = 'CHP', spawncode = 'chp21tahoe'},
{name = 'CHP', spawncode = 'chp211tahoe'},
{name = 'CHP', spawncode = 'chpfpiuk9'},
{name = 'CHP', spawncode = 'chp23durango'},
{name = 'CHP', spawncode = 'chp23durangop'},
{name = 'CHP', spawncode = 'chp18charger'},
{name = 'CHP', spawncode = 'chp1200rt'},
{name = 'CHP', spawncode = 'chp13harley'},
{name = 'CHP', spawncode = 'chp20fpiuS'},
{name = 'CHP', spawncode = 'chp20tahoe'},
{name = 'CHP', spawncode = 'chp16fpiu'},
{name = 'CHP', spawncode = 'chp181charger'},
{name = 'CHP', spawncode = 'chp11cvpiS'},
{name = 'CHP', spawncode = 'chp11cvpi'},
{name = 'CHP', spawncode = 'chp18chargerS'},
{name = 'CHP', spawncode = 'chp13fpiuS'},
{name = 'CHP', spawncode = 'chp13fpiu'},
{name = 'CHP', spawncode = 'chp18chargerS'},
{name = 'CHP', spawncode = 'chp20tahoeS'},
{name = 'CHP', spawncode = 'chp20tahoe'},
},
}
--This determines if the ai traffic manager will can accessible
Config.DisplayTrafficManager = true
---------------------------------------------------------------
-- --
-- Fire Features --
-- --
---------------------------------------------------------------
--This sets who can access the Fire menu
--!!! NOTE: If Fire Peds is selected then onlys peds from the Config.FireUniforms will have access to the menu
--Disabled = 0 | Everyone = 1 [Default] | Fire Peds = 2 | Onduty Command = 3 | Ace Permissions = 4
Config.FireAccess = 1
--This sets if the Hospitalize functions will be visible in the menu
Config.FireHospital = true
--This is the max time that someone can be hospitalized for (Seconds)
Config.MaxHospitalTime = 300
--These is the location of the hospital and release point
--I would recommend using a MLO Interior/Ymap for the hospital
Config.HospitalLocation = {
['Pillbox Hill'] = {
Hospital = {x = 358.34, y = -589.98, z = 28.79, h = 257.19},
Release = {x = 372.78, y = -595.04, z = 28.84, h = 248.29},
},
['Paleto Bay'] = {
Hospital = {x = -247.34, y = 6332.39, z = 32.42 , h = 226.90},
Release = {x = -247.34, y = 6332.39, z = 32.42 , h = 226.90},
}
}
--These are the station available via the station menu
Config.FireStations = {
{name = 'Sandy Shores', coords = {x = 1693.57, y = 3582.68, z = 35.62 , h = 227.29}},
{name = 'Paleto Bay', coords = {x = -382.50, y = 6116.76, z = 31.47 , h = 7.29}},
{name = 'Davis', coords = {x = 201.16, y = -1631.67, z = 29.75, h = 296.67}},
{name = 'Rockford Hill', coords = {x = -636.47, y = -117.02, z = 38.02, h = 79.64}},
{name = 'El Burro Heights', coords = {x = 1191.83, y = -1461.74, z = 34.88, h = 329.54}},
}
--These are the locations of hospitals avaiable via the hospital menu
Config.HospitalStations = {
{name = 'Sandy Shores', coords = {x = 1839.13, y = 3673.26, z = 34.27 , h = 210.83}},
{name = 'Paleto Bay', coords = {x = -247.34, y = 6332.39, z = 32.42 , h = 226.90}},
{name = 'Pillbox', coords = {x = 357.19, y = -593.46, z = 28.78, h = 260.70}},
{name = 'Davis', coords = {x = 294.59, y = -1448.17, z = 29.96, h = 320.92}},
}
--This determines if the LEO Unfiroms section will be visible
Config.DisplayFireUniforms = true
--These are the Fire uniforms that are available via the loadouts - these will also be the uniforms which will give access to the Fire menu if that option if chosen at Config.FireAccess
Config.FireUniforms = {
--[[
EXAMPLE:
{name = 'a', spawncode = 'b'},
────────────────────────────────────────────────────────────────
'a' is the title that shows in the menu
'b' is the spawn code for uniform that will be spawned
]]
{name = 'Firefighter', spawncode = 's_m_y_fireman_01'},
{name = 'Paramedic', spawncode = 's_m_m_paramedic_01'},
}
--This determines if the LEO Loadouts section will be visible
Config.DisplayFireLoadouts = true
--This determines if the Fire vehicles section if available
Config.ShowFireVehicles = true
--This determines if the vehicle spawn codes are displayed next to the name
Config.ShowFireSpawnCode = true
--These are the Fire vehicles which are avaiable via the menu
Config.FireVehicles = {
--[[
EXAMPLE:
{name = 'a', spawncode = 'b', livery = c, extras = {d, d}},
────────────────────────────────────────────────────────────────
'a' is the title of the vehicle that shows in the menu
'b' is the spawn code for vehicle that will be spawned
'c' is the number of the livery which you want it to spawn with
'd' is the number(s) of extra(s) which you want it to spawn with
**NOTE: Sometimes the sections do NOT display if the order in the config below**
]]
--These are the Vehicles that will show in the Category and there spawn codes
{name = 'Ambulance', spawncode = 'rambulance'},
{name = 'Ambulance', spawncode = 'ALSrescue1'},
{name = 'Ambulance', spawncode = 'f250ambo'},
{name = 'Ambulance', spawncode = 'CAMBO'},
{name = 'Ambulance', spawncode = 'medic22'},
{name = 'Ambulance', spawncode = 'amrvan'},
{name = 'Ambulance', spawncode = '24ramambo'},
{name = 'Ambulance', spawncode = 'e350vanb'},
{name = 'Ambulance', spawncode = 'e450ambo'},
{name = 'Ambulance', spawncode = '20ramambo'},
{name = 'Fire Engine', spawncode = 'firetruk'},
{name = 'Ambulance', spawncode = 'ambulance'},
}
---------------------------------------------------------------
-- --
-- Civilian Features --
-- --
---------------------------------------------------------------
--This sets who can access the Civlian menu
--!!! NOTE: If Fire Peds is selected then onlys peds from the Config.FireUniforms will have access to the menu
--Disabled = 0 | Everyone = 1 [Default]
Config.CivAccess = 1
--This determines if the Civilian vehicles section if available
Config.ShowCivVehicles = true
--This determines if the vehicle spawn codes are displayed next to the name
Config.ShowCivSpawnCode = true
--These are the Civilian vehicles which are avaiable via the menu
Config.CivVehicles = {
--[[
EXAMPLE:
{name = 'a', spawncode = 'b'},
────────────────────────────────────────────────────────────────
'a' is the title of the vehicle that shows in the menu
'b' is the spawn code for vehicle that will be spawned
]]
--These are the Vehicles that will show in the Category and there spawn codes
{name = 'Adder', spawncode = 'adder'},
{name = 'Baller', spawncode = 'baller'},
}
--This determines if the civilian adverts sections of the menu if visible
--NOTE: When someone sends an advert it will display the company name and then "Advertisement ##", this is the Server ID of the person that sent the advert
Config.ShowCivAdverts = true
--These are the adverts that are avaiable via the ads menu
--NOTE: You can add additional adverts from https://wiki.gtanet.work/index.php?title=Notification_Pictures
Config.CivAdverts = {
--[[
EXAMPLE:
{name = 'a', loc = 'b', file = 'c'},
────────────────────────────────────────────────────────────────
'a' is the title of the Adverts
'b' is the location for the Advert's Image
'c' is the file name for the Advert's Image
]]
-- !!!!! Wouldn't Recommend Changing These Unless You Know What You're Doing !!!!!
-- !!!!! Wouldn't Recommend Changing These Unless You Know What You're Doing !!!!!
-- !!!!! Wouldn't Recommend Changing These Unless You Know What You're Doing !!!!!
{name = '24/7', loc = 'CHAR_FLOYD', file = '247'},
{name = 'Ammunation', loc = 'CHAR_AMMUNATION', file = 'CHAR_AMMUNATION'},
{name = 'Bugstars', loc = 'CHAR_BUGSTARS', file = 'CHAR_BUGSTARS'},
{name = 'Cluckin\' Bell', loc = 'CHAR_FLOYD', file = 'BELL'},
{name = 'Downtown Cab Co.', loc = 'CHAR_TAXI', file = 'CHAR_TAXI'},
{name = 'Dynasty 8', loc = 'CHAR_FLOYD', file = 'D8'},
{name = 'Fleeca Bank', loc = 'CHAR_BANK_FLEECA', file = 'CHAR_BANK_FLEECA'},
{name = 'Gruppe6', loc = 'CHAR_FLOYD', file = 'GRUPPE6'},
{name = 'Merry Weather', loc = 'CHAR_MP_MERRYWEATHER', file = 'CHAR_MP_MERRYWEATHER'},
{name = 'Limited Gasoline', loc = 'CHAR_FLOYD', file = 'LTD'},
{name = 'Liquor Ace', loc = 'CHAR_FLOYD', file = 'ACE'},
{name = 'Smoke on the Water', loc = 'CHAR_FLOYD', file = 'SOTW'},
{name = 'Pegasus', loc = 'CHAR_PEGASUS_DELIVERY', file = 'CHAR_PEGASUS_DELIVERY'},
{name = 'Los Santos Customs', loc = 'CHAR_LS_CUSTOMS', file = 'CHAR_LS_CUSTOMS'},
{name = 'Los Santos Traffic Info', loc = 'CHAR_LS_TOURIST_BOARD', file = 'CHAR_LS_TOURIST_BOARD'},
{name = 'Los Santos Water and Power', loc = 'CHAR_FLOYD', file = 'LSWP'},
{name = 'Mors Mutual Insurance', loc = 'CHAR_MP_MORS_MUTUAL', file = 'CHAR_MP_MORS_MUTUAL'},
{name = 'PostOP', loc = 'CHAR_FLOYD', file = 'OP'},
{name = 'Vanilla Unicorn', loc = 'CHAR_MP_STRIPCLUB_PR', file = 'CHAR_MP_STRIPCLUB_PR'},
{name = 'Weazel News', loc = 'CHAR_FLOYD', file = 'NEWS'},
{name = 'Facebook', loc = 'CHAR_FACEBOOK', file = 'CHAR_FACEBOOK'},
{name = 'Life Invader', loc = 'CHAR_LIFEINVADER', file = 'CHAR_LIFEINVADER'},
{name = 'YouTube', loc = 'CHAR_YOUTUBE', file = 'CHAR_YOUTUBE'},
}
---------------------------------------------------------------
-- --
-- Vehicle Features --
-- --
---------------------------------------------------------------
--This sets when players can access the vehicle menu
--Disabled = 0 | All the Time = 1 [Default] | When in Vehicle = 2
Config.VehicleAccess = 1
--This determines if the vehicle options are avaiable, these include: Fix, Clean, Delete
Config.VehicleOptions = true
---------------------------------------------------------------
-- --
-- Emote Features --
-- --
---------------------------------------------------------------
--This sets which players can access the emote menu
--Disabled = 0 | Everyone = 1 [Default]
Config.EmoteAccess = 1
--This sets if a help message is displayed when playing an emote
Config.EmoteHelp = true
--These are the emotes avaiable via the menu and the '/emotes' & '/emote [Emote]' commands
Config.EmotesList = {
{name = 'binoculars', emote = 'WORLD_HUMAN_BINOCULARS'},
{name = 'camera', emote = 'WORLD_HUMAN_PAPARAZZI'},
{name = 'clean', emote = 'WORLD_HUMAN_MAID_CLEAN'},
{name = 'clipboard', emote = 'WORLD_HUMAN_CLIPBOARD'},
{name = 'coffee', emote = 'WORLD_HUMAN_AA_COFFEE'},
{name = 'cheer', emote = 'WORLD_HUMAN_CHEERING'},
{name = 'cop', emote = 'WORLD_HUMAN_COP_IDLES'},
{name = 'film', emote = 'WORLD_HUMAN_MOBILE_FILM_SHOCKING'},
{name = 'fish', emote = 'WORLD_HUMAN_STAND_FISHING'},
{name = 'flex', emote = 'WORLD_HUMAN_MUSCLE_FLEX'},
{name = 'guard', emote = 'WORLD_HUMAN_GUARD_STAND'},
{name = 'hammer', emote = 'WORLD_HUMAN_HAMMERING'},
{name = 'homeless', emote = 'WORLD_HUMAN_BUM_FREEWAY'},
{name = 'impatient', emote = 'WORLD_HUMAN_STAND_IMPATIENT'},
{name = 'jog', emote = 'WORLD_HUMAN_JOG_STANDING'},
{name = 'kneel', emote = 'CODE_HUMAN_MEDIC_KNEEL'},
{name = 'lean', emote = 'WORLD_HUMAN_LEANING'},
{name = 'mechanic', emote = 'WORLD_HUMAN_VEHICLE_MECHANIC'},
{name = 'medic', emote = 'CODE_HUMAN_MEDIC_TEND_TO_DEAD'},
{name = 'music', emote = 'WORLD_HUMAN_MUSICIAN'},
{name = 'notepad', emote = 'CODE_HUMAN_MEDIC_TIME_OF_DEATH'},
{name = 'party', emote = 'WORLD_HUMAN_PARTYING'},
{name = 'phone', emote = 'WORLD_HUMAN_STAND_MOBILE'},
{name = 'phonecall', emote = 'WORLD_HUMAN_STAND_MOBILE_UPRIGHT'},
{name = 'selfie', emote = 'WORLD_HUMAN_TOURIST_MOBILE'},
{name = 'sit', emote = 'WORLD_HUMAN_PICNIC'},
{name = 'sleep', emote = 'WORLD_HUMAN_BUM_SLUMPED'},
{name = 'smoke', emote = 'WORLD_HUMAN_SMOKING'},
{name = 'statue', emote = 'WORLD_HUMAN_HUMAN_STATUE'},
{name = 'stupor', emote = 'WORLD_HUMAN_STUPOR'},
{name = 'sunbathe', emote = 'WORLD_HUMAN_SUNBATHE'},
{name = 'sunbathe2', emote = 'WORLD_HUMAN_SUNBATHE_BACK'},
{name = 'traffic', emote = 'WORLD_HUMAN_CAR_PARK_ATTENDANT'},
{name = 'weed', emote = 'WORLD_HUMAN_SMOKING_POT'},
{name = 'weights', emote = 'WORLD_HUMAN_MUSCLE_FREE_WEIGHTS'},
{name = 'weld', emote = 'WORLD_HUMAN_WELDING'},
{name = 'yoga', emote = 'WORLD_HUMAN_YOGA'},
}