This commit is contained in:
Nordi98 2025-06-10 19:52:58 +02:00
parent 93a53d1343
commit b3be5bbddd
8 changed files with 373 additions and 11 deletions

View file

@ -100,8 +100,8 @@ ClientConfig = {
m_emergencyDispatch = { -- Enable this to enable the emergency dispatch system. (Button press while being dead to alert emergency services)
enabled = true, -- Enable this to enable the emergency dispatch system (or disable it :D).
cooldown = 120, -- The cooldown in seconds.
phoneConfiguration = "gcphone", -- The default phone configuration. ("esx_phone", "visn_phone", "gcphone", "dphone", "roadphone", "qs-smartphone", "gksphone", "emergencydispatch", "custom" -> edit in helpers/c_functions.lua|l:244)
receivers = { "ambulance" } -- The jobs that will receive a message/notification when you alert the emergency dispatch.
phoneConfiguration = "roadphone", -- The default phone configuration. ("esx_phone", "visn_phone", "gcphone", "dphone", "roadphone", "qs-smartphone", "gksphone", "emergencydispatch", "custom" -> edit in helpers/c_functions.lua|l:244)
receivers = { "ems" } -- The jobs that will receive a message/notification when you alert the emergency dispatch.
},
m_spawnGameObjects = { -- Enable this to enable the spawn game objects feature (bandages on ground etc).

View file

@ -29,7 +29,7 @@ ServerConfig = {
m_dependUnconsciousTimeOnMedicCount = {
enabled = false, -- Set this to 'true', if you want that the system will depend on the medic count.
jobs = { "ambulance" }, -- A table of jobs that will count to the final count of medics.
jobs = { "ems" }, -- A table of jobs that will count to the final count of medics.
overwrites = { -- Keep in order: Lowest to highest!
-- Format: [Medic count as number] = Time in seconds
[0] = 60 * 5, -- 5 Minutes when medicCount >= 0
@ -39,13 +39,13 @@ ServerConfig = {
m_limitMenuToJobs = { -- Limits the menu to certain jobs.
enabled = false, -- Set this 'true', if you want that the system will limit the menu to certain jobs.
jobs = { "ambulance", "police", "tierarzt" }, -- A table of jobs that are allowed to use the menu.
jobs = { "ems", "police", "tierarzt" }, -- A table of jobs that are allowed to use the menu.
},
m_triageSystem = {
enabled = true, -- Set this 'true', if you want that the triage system is enabled.
jobRestriction = true, -- Set this 'true', if you want that the triage system is restricted to certain jobs.
jobs = { "ambulance", "police", "tierarzt" }, -- A table of jobs that are allowed to use the triage system.
jobs = { "ems", "police", "tierarzt" }, -- A table of jobs that are allowed to use the triage system.
},
m_stateSaving = { -- This feature will save the state of the players (like injuries, blood pressure) to a file (recommend) or mysql database.
@ -82,7 +82,7 @@ ServerConfig = {
m_medicalOperations = {
enabled = true,
actions = { "cpr" },
jobs = { "ambulance" }
jobs = { "ems" }
},
-- [[ Debug Settings ]] --