-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.lua
41 lines (30 loc) · 1.27 KB
/
config.lua
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
-- Configuration table for a police exclusion zone
Config = {}
-- Name of the blip that appears on the map to mark the zone
Config.Blipname = "~r~EXCLUSION ZONE~s~"
-- Color of the blip that appears on the map to mark the zone
Config.Color = 3
Config.Radius = 150
blipRadius = 150.0
-- Jobs that are allowed to enter the exclusion zone
Config.Jobs = {
"police",
"doa",
"sheriff",
"doj" ,
"ambulance"
}
-- Command that players with allowed jobs can use to create an exclusion zone
Config.CreateCommand = "zoneAdd"
-- Command that players with allowed jobs can use to remove an exclusion zone
Config.RemoveCommand = "zoneRemove"
-- Title of the notification that appears when an exclusion zone is created
Config.NotifyTitle = "~r~EXCLUSION ZONE~s~"
-- Icon of the notification that appears when an exclusion zone is created
Config.NotifyPicture = "CHAR_CALL911"
-- Message of the notification that appears when an exclusion zone is created
Config.NotifyMessage = "An exclusion zone was declared. Unallowed approaches must expect to be ~r~arrested"
-- Message of the notification that appears when an exclusion zone is removed
Config.NotifyMessageRemoved = "The current exclusion zone has been lifted!"
-- Play Sounds?
Config.Sounds = true