forked from Developer-Bear/RNG_FrontDeskPage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-FrontDeskPage.lua
54 lines (45 loc) · 1.8 KB
/
config-FrontDeskPage.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
42
43
44
45
46
47
48
49
50
51
52
53
54
Config = {}
Config.Locale = 'en'
-- How far away from the desk the player can be before the text is displayed
Config.TextDrawDistance = 3
-- To prevent spamming (to disable cooldown set to 0)
Config.CoolDown = 1 -- MINUTES, do not use decimals
-- Edit to change the notification sound
Config.SoundDirectory = '5_SEC_WARNING'
Config.SoundName = 'HUD_MINI_GAME_SOUNDSET'
-- Use Mythic Notify?
Config.UseMythicNotify = true
Config.Locations = {
MissionRowPD = {
DisplayName = 'Mission Row PD', -- How it displays in the notification to the whitelisted players
Coords = { x = 441.47, y = -980.26, z = 31.89}, -- Pager Coords
JobsToPage = { -- Jobs that will receive a notification (supports multiple)
'police',
'ambulance'
}
},
SandySO = {
DisplayName = 'Sandy Shores SO', -- How it displays in the notification to the whitelisted players
Coords = { x = 1854.45, y = 3689.18, z = 35.32}, -- Pager Coords
JobsToPage = { -- Jobs that will receive a notification (supports multiple)
'police',
-- 'ambulance'
}
},
PaletoSO = {
DisplayName = 'Paleto Bay SO', -- How it displays in the notification to the whitelisted players
Coords = { x = -448.85, y = 6013.74, z = 32.78}, -- Pager Coords
JobsToPage = { -- Jobs that will receive a notification (supports multiple)
'police',
-- 'ambulance'
}
},
PillboxMedical = {
DisplayName = 'Pillbox Hospital', -- How it displays in the notification to the whitelisted players
Coords = { x = 308.04, y = -595.96, z = 44.15}, -- Pager Coords
JobsToPage = { -- Jobs that will receive a notification (supports multiple)
--'police',
'ambulance'
}
}
}