-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.lua
More file actions
86 lines (79 loc) · 2.11 KB
/
config.lua
File metadata and controls
86 lines (79 loc) · 2.11 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
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
Config = {}
Config.Integrations = {
framework = "qbx", -- 'qbx' |
inventory = "ox", -- 'ox' |
notify = "ox", -- 'ox' |
}
Config.ItemNames = {
insulinPen = "insulinpen",
energyTablet = "energytablet",
bloodSugarMonitor = "bloodsugarmonitor",
}
Config.items = {
insulin = {
sugarDecrease = 5.0, -- Decreases sugar level by 5
animation = {
dict = "rcmpaparazzo1ig_4",
clip = "miranda_shooting_up",
duration = 6000,
prop = {
model = "prop_syringe_01",
bone = 18905,
pos = {0.12, 0.03, 0.02},
rot = {10.0, 160.0, 10.0},
}
},
},
energyTablet = {
sugarIncrease = 10.0, -- Increases sugar level by 10
animation = {
dict = "mp_suicide",
clip = "pill",
duration = 2500,
prop = {
model = "xm3_prop_xm3_pill_01a",
bone = 58866,
pos = {0.00, 0.00, 0.00},
rot = {0.0, 0.0, 0.0},
}
},
},
bloodSugarMonitor = {
animation = {
dict = "cellphone@",
clip = "cellphone_text_in",
duration = 1500,
flag = 16,
prop = {
model = "prop_amb_phone",
bone = 28422,
pos = {0.0, 0.0, 0.0,},
rot = {0.0, 0.0, 0.0},
}
},
},
}
Config.Type1 = {
SugarDecreaseAmount = 2.5,
SugarDecreaseInterval = 5, -- Interval in minutes
}
Config.Type2 = {
SugarDecreaseAmount = 3.0,
SugarDecreaseInterval = 4, -- Interval in minutes
}
Config.Effects = {
highSugar = {
threshold = 80.0,
screenEffect = "DrugsMichaelAliensFightIn",
walkingSpeed = 0.3,
animation = "MOVE_M@DRUNK@MODERATEDRUNK_HEAD_UP",
healthLoss = 2.0,
},
lowSugar = {
threshold = 20.0,
screenEffect = "DrugsMichaelAliensFightIn",
walkingSpeed = 0.3,
animation = "MOVE_M@DRUNK@MODERATEDRUNK_HEAD_UP",
healthLoss = 2.0,
},
}