-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathconfig.lua
66 lines (56 loc) · 2.26 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
Config = {}
Config.UpdateFrequency = 3600
Config.DeleteStats = true
Config.MmbershipCardPrice = 200
Config.Skills = {
["resistance"] = {
["Current"] = 20, ["RemoveAmount"] = -0.3, ["Stat"] = "MP0_STAMINA"
},
["strength"] = {
["Current"] = 10, ["RemoveAmount"] = -0.3, ["Stat"] = "MP0_STRENGTH"
},
["diving"] = {
["Current"] = 0, ["RemoveAmount"] = -0.3, ["Stat"] = "MP0_LUNG_CAPACITY"
},
["shooting"] = {
["Current"] = 0, ["RemoveAmount"] = -0.1,["Stat"] = "MP0_SHOOTING_ABILITY"
},
["driving"] = {
["Current"] = 0, ["RemoveAmount"] = -0.5, ["Stat"] = "MP0_DRIVING_ABILITY"
},
["Raise front wheel"] = {
["Current"] = 0, ["RemoveAmount"] = -0.2, ["Stat"] = "MP0_WHEELIE_ABILITY"
}
}
Config.Locations = {
[1] = {--pull-ups
coords = vector3(-1200.02, -1571.18, 4.61), heading = 215.53,
animation = "prop_human_muscle_chin_ups", skill = "resistance", SkillAddQuantity = 1,
Text3D = "~b~E~w~ - [Do Pull-ups]", viewDistance = 2.5,
},
[2] = {--arms
coords = vector3(-1202.9837, -1565.1718, 4.63115), heading = 212.78,
animation = "world_human_muscle_free_weights", skill = "strength", SkillAddQuantity = 1,
Text3D = "~b~E~w~ - [Use weights]", viewDistance = 2.5,
},
[3] = {--pushup
coords = vector3(-1203.3242, -1570.6184, 4.631155), heading = 212.78,
animation = "world_human_push_ups", skill = "strength", SkillAddQuantity = 1,
Text3D = "~b~E~w~ - [Do push-ups]", viewDistance = 2.5,
},
[4] = {--yoga
coords = vector3(-1204.7958, -1560.1906, 4.63115), heading = 212.78,
animation = "world_human_yoga", skill = "resistance", SkillAddQuantity = 1,
Text3D = "~b~E~w~ - [Do yoga]", viewDistance = 2.5,
},
[5] = {--yoga
coords = vector3(-1221.04, -1545.01, 4.69), heading = 212.78,
animation = "world_human_yoga", skill = "resistance", SkillAddQuantity = 1,
Text3D = "~b~E~w~ - [Do yoga]", viewDistance = 3.5,
},
[6] = {--yoga
coords = vector3(-1217.09, -1543.43, 4.72), heading = 212.78,
animation = "world_human_yoga", skill = "resistance", SkillAddQuantity = 1,
Text3D = "~b~E~w~ - [Do yoga]", viewDistance = 3.5,
},
}