-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.lua
43 lines (35 loc) · 996 Bytes
/
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
Config = {}
Config.UpdateFrequency = 300 -- seconds interval between removing values
Config.Notifications = true -- notification when skill is added
Config.Skills = {
["Stamina"] = {
["Current"] = 20, -- Default value
["RemoveAmount"] = -0.3, -- % to remove when updating,
["Stat"] = "MP0_STAMINA" -- GTA stat hashname
},
["Strength"] = {
["Current"] = 10,
["RemoveAmount"] = -0.3,
["Stat"] = "MP0_STRENGTH"
},
["Lung Capacity"] = {
["Current"] = 0,
["RemoveAmount"] = -0.1,
["Stat"] = "MP0_LUNG_CAPACITY"
},
["Shooting"] = {
["Current"] = 0,
["RemoveAmount"] = -0.1,
["Stat"] = "MP0_SHOOTING_ABILITY"
},
["Driving"] = {
["Current"] = 0,
["RemoveAmount"] = -0.5,
["Stat"] = "MP0_DRIVING_ABILITY"
},
["Wheelie"] = {
["Current"] = 0,
["RemoveAmount"] = -0.2,
["Stat"] = "MP0_WHEELIE_ABILITY"
}
}