-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathconfig.lua
More file actions
29 lines (29 loc) · 1.46 KB
/
config.lua
File metadata and controls
29 lines (29 loc) · 1.46 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
Config = {
prefix = "^7[^1Badger-Priorities^7] ^3",
Options = {
EnableSpeedMessage = true,
EnablePCDMessage = true,
EnableHoldMessage = true,
EnableProgressMessage = true,
EnableCooldownMessage = true,
CenterText = true,
AlwaysDisplay = true, -- Always display the priority cooldown text even with 0 mins left?
CooldownDisplay = "~w~Priority Cooldown: ~r~{MINS} ~w~mins",
InProgressDisplay = "~w~Priority Cooldown: ~g~Priority in Progress",
OnHoldDisplay = "~w~Priority Cooldown: ~b~Priorities are on Hold",
-- TooFastDisplay triggers when a car is going over 80 MPH and priorities are in progress, on hold, or a cooldown is active
TooFastDisplay = "~r~NOTICE: ~b~You cannot run from police currently. You are risking staff punishment!",
resetDisplay = "~r~Cooldown: ~b~None"
},
Messages = {
CooldownMessage = 'A priority was just conducted... The cooldown has been activated. ' -- You can also use {MINS} parameter here
.. '^1You cannot run from police or cause any priorities (violent RP) until the cooldown has concluded!',
InProgressMessage = 'There is a priority in progress... ^1You cannot run from police or cause any priorities (violent RP) until priorities are off hold!',
OnHoldMessage = 'Priorities are now on hold... ^1You cannot run from police or cause any priorities (violent RP) until priorities are off hold!',
resetMessage = 'Priorities Have Been Reset!'
},
DisplayLocation = {
x = .50,
y = .005
}
}