-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
156 lines (140 loc) · 4.22 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
Config = {}
----------------------------------
-- Core
----------------------------------
Config.core = 'rsg-core' ---- change to your core name
----------------------------------
-- rsg-telegram
----------------------------------
Config.telegram = true -- true or false if you use rsg-telegram
Config.TelegramCheck = 5000 -- amount of milliseconds to check your telegrams
Config.telegramname = 'rsg-telegram' --- change to your telegram name script
----------------------------------
-- stress settings
----------------------------------
Config.StressChance = 0.1 -- Default: 10% -- Percentage Stress Chance When Shooting (0-1)
Config.MinimumStress = 50 -- Minimum Stress Level For Screen Shaking
Config.MinimumSpeed = 100 -- Going Over This Speed Will Cause Stress
----------------------------------
-- hud player display settings
----------------------------------
Config.HidePlayerHealthNative = true
Config.HidePlayerStaminaNative = true
Config.HidePlayerDeadEyeNative = true
----------------------------------
-- hud horse display settings
----------------------------------
Config.HideHorseHealthNative = true
Config.HideHorseStaminaNative = true
Config.HideHorseCourageNative = true
----------------------------------
-- minimap / compass settings
----------------------------------
Config.OnFootMinimap = false -- set to true/false to disable/enable minimap when on foot
Config.OnFootCompass = false -- true = have the minimap set to a compass instead of off or normal minimap
Config.MounttMinimap = true -- set to false if you want to disable the minimap when on mount
Config.MountCompass = false -- set to true if you want to have a compass instead of normal minimap while on a mount
----------------------------------
-- turn health damage on/off
----------------------------------
Config.DoHealthDamage = true
----------------------------------
-- turn screen effect on/off
----------------------------------
Config.DoHealthDamageFx = false
----------------------------------
-- turn health damage sound on/off
----------------------------------
Config.DoHealthPainSound = true
----------------------------------
-- temp settings (only one setting)
----------------------------------
Config.TempFormat = 'celsius'
--Config.TempFormat = 'fahrenheit'
----------------------------------
-- warmth add while wearing
----------------------------------
Config.WearingHat = 0
Config.WearingShirt = 0
Config.WearingPants = 0
Config.WearingBoots = 0
Config.WearingCoat = 15
Config.WearingOpenCoat = 15
Config.WearingGloves = 0
Config.WearingVest = 0
Config.WearingPoncho = 0
Config.WearingSkirt = 0
Config.WearingChaps = 0
----------------------------------
-- warmth limit before impacts health
----------------------------------
Config.MinTemp = -5
Config.MaxTemp = 40
----------------------------------
-- cleanliness limit before impacts health
----------------------------------
Config.FlyEffect = false -- toggle flies on/off
Config.MinCleanliness = 30
----------------------------------
-- amount of health to remove if min/max temp reached
----------------------------------
Config.RemoveHealth = 5
----------------------------------
-- stress settings
----------------------------------
Config.Intensity = {
shake = {
[1] = {
min = 50,
max = 60,
intensity = 0.12,
},
[2] = {
min = 60,
max = 70,
intensity = 0.17,
},
[3] = {
min = 70,
max = 80,
intensity = 0.22,
},
[4] = {
min = 80,
max = 90,
intensity = 0.28,
},
[5] = {
min = 90,
max = 100,
intensity = 0.32,
},
}
}
Config.EffectInterval = {
[1] = {
min = 50,
max = 60,
timeout = math.random(50000, 60000)
},
[2] = {
min = 60,
max = 70,
timeout = math.random(40000, 50000)
},
[3] = {
min = 70,
max = 80,
timeout = math.random(30000, 40000)
},
[4] = {
min = 80,
max = 90,
timeout = math.random(20000, 30000)
},
[5] = {
min = 90,
max = 100,
timeout = math.random(15000, 20000)
}
}