-
Notifications
You must be signed in to change notification settings - Fork 0
/
fhpp_config.lua
48 lines (46 loc) · 1.29 KB
/
fhpp_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
42
43
44
45
46
47
48
FHPP.DefaultConfig = {
----------GENERAL-----------
-- Change Size of the text. Range: [0,...,1]
-- Default = 0.5
["Scale"] = 0.5,
-- Set transparency of the background. Range: [0,...,1]
-- Default = 0.5
["Transparency"] = 0.5,
-- Set X Position (Width) of the descriptiontext
-- Default = 25
["XPosition"] = 25,
-- Set Y Position (Height) of the descriptiontext
-- Default = 200
["YPosition"] = 200,
-- Set Line Height of the descriptiontext
-- Default = 6
["LineHeight"] = 6,
-- Display text horizontally or vertically
-- Default = Vertical
["Display"] = "Vertical",
-- Choose output. Values: {"HUD", "File"}
-- Default = HUD
["Display"] = "HUD",
----------ITEM NAMES-----------
-- Toggle Display of Challenge names when in a challenge
-- Default = true
["ShowChallengeName"] = true,
-- Toggle Display of Character name
-- Default = true
["ShowCharacterName"] = true,
-- Toggle Display of Floor name
-- Default = true
["ShowFloorName"] = true,
-- Toggle Display of Time
-- Default = true
["ShowTime"] = true,
-- Toggle Display of Seed
-- Default = true
["ShowSeed"] = true,
-- Toggle Display of Holy Shield status
-- Default = true
["ShowShield"] = true,
-- Toggle Display of info titles. Values: {"None", "Short", "Full"}
-- Default = "Full"
["ShowTitles"] = "Full"
}