forked from Kamikaze94/WolfHUD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WolfHUDTweakData.lua
60 lines (52 loc) · 2.79 KB
/
WolfHUDTweakData.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
55
56
57
58
59
60
WolfHUDTweakData = WolfHUDTweakData or class()
function WolfHUDTweakData:init()
----------------------------------------------------------------------------------------------------------------------
-- WolfHUD Tweak Data --
----------------------------------------------------------------------------------------------------------------------
-- This file enables access to advanced settings, or those I cannot really implement into ingame menus easily. --
-- If you want to save those changes, please copy this file to "Payday 2/mods/saves" and edit that copy instead. --
-- You will need to take care of that version beeing up to date on your own. --
-- It will not get changed on updates automatically. --
-- If you encounter problems, make sure the contents of this file matches the contents of your customized version. --
----------------------------------------------------------------------------------------------------------------------
-- Currency used ingame
self.CASH_SIGN = "$" -- Dollar
--self.CASH_SIGN = "\194\128" -- EUR
-- Maximum amount of Plans, that can be saved per level/map.
self.MAX_PRE_PLANS = 10
-- Maximum Length of custom weapon names.
self.MAX_WEAPON_NAME_LENGTH = 30
-- Maximum Length of custom Skill set names.
self.MAX_SKILLSET_NAME_LENGTH = 25
-- Time within 2 presses of the nade button, to throw a nade in stealth.
self.STEALTH_NADE_TIMEOUT = 0.25
-- Time between 2 automatical pickups, when the interaction button remains pressed.
self.AUTO_PICKUP_DELAY = 0.2
-- Color table
-- Add or remove any color you want
-- 'color' needs to be that colors hexadecimal code
-- 'name' will be the name it appears in the selection menus
self.color_table = {
{ color = 'FFFFFF', name = "white" },
{ color = 'F2F250', name = "light_yellow" },
{ color = 'F2C24E', name = "light_orange" },
{ color = 'E55858', name = "light_red" },
{ color = 'CC55CC', name = "light_purple" },
{ color = '00FF00', name = "light_green" },
{ color = '00FFFF', name = "light_blue" },
{ color = 'BABABA', name = "light_gray" },
{ color = 'FFFF00', name = "yellow" },
{ color = 'FFA500', name = "orange" },
{ color = 'FF0000', name = "red" },
{ color = '800080', name = "purple" },
{ color = '008000', name = "green" },
{ color = '0000FF', name = "blue" },
{ color = '808080', name = "gray" },
{ color = '000000', name = "black" },
{ color = nil, name = "rainbow" },
}
self:post_init()
end
----------------------------------------- DONT EDIT BELOW THIS LINE!!! ----------------------------------------- DONT EDIT BELOW THIS LINE!!! ----------------------------------------- DONT EDIT BELOW THIS LINE!!! -----------------------------------------
function WolfHUDTweakData:post_init()
end