-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
54 lines (41 loc) · 1.87 KB
/
config.lua
File metadata and controls
54 lines (41 loc) · 1.87 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
52
53
54
--[[
───────────────────────────────────────────────────────────────
hsDevelopment 911 Script Configuration
Version: 1.0.2
Last Updated: October 2025
Support: https://hammity.app/invite/t584eX9X
⚠️ DO NOT EDIT UNLESS YOU KNOW WHAT YOU ARE DOING ⚠️
───────────────────────────────────────────────────────────────
]]
Config = {}
-- 🧭 Webhook Settings
Config.HammityWebhookURL = 'https://api.hammity.app/webhooks/'
-- Preset image URL for all 911 notifications - set to blank '' to disable
-- NOTE: Image Not Currently Supported in Hammity
Config.presetImageURL = ''
-- 911 Call Map Blip Settings REFRENCE: https://docs.fivem.net/docs/game-references/blips/
Config.MapBlip = {
Enabled = true, -- If false, no blips are created
Sprite = 817, -- Blip icon (use FiveM/GTAV blip IDs)
Color = 1, -- Blip color
Scale = 1.0, -- Size of the blip
Text = "911 Call" -- Label when you hover over the blip
}
-- 📢 Message Prefix
Config.Prefix = '^5[^1911^5] ^3'
-- 🚓 Restriction Settings
-- Only show 911 calls to responders who are on-duty or in emergency vehicles.
Config.RequireDuty = true -- If true, must use /duty to see/respond
Config.AllowEmergencyVehicles = true -- If true, anyone in an emergency vehicle will also see 911 calls
-- 🧑🚒 Example Roles (for future expansion)
Config.Roles = {
"SAHP",
"BCSO",
"BCPD",
"CO",
"EMS",
}
-- ⚙️ Version Checker Settings
Config.VersionChecker = {
Enabled = true, -- true = show full detailed messages; false = show simple messages only
}