-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
120 lines (110 loc) · 2.79 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
Config = {}
Config.UpdateFrequency = 300
Config.ResetSkillsDeath = false
Config.Notifications = true
Config.NotifyType = 'ox' -- OX or ESX
Config.Debug = false
Config.Skillmenu = "skills" --Comand
Config.CustomSkill = true
Config.Skills = {
['Stamina'] = {
SkillLang = 'Stamina',
gtaAbility = true,
Current = 0,
RemoveAmount = 0,
Stat = "MP0_STAMINA",
icon = 'fas fa-walking',
info = 'Description',
},
['Strength'] = {
SkillLang = 'Fuerza',
gtaAbility = true,
Current = 0,
RemoveAmount = 0,
Stat = "MP0_STRENGTH",
icon = 'fas fa-dumbbell',
info = 'Description',
},
['Lung capacity'] = {
SkillLang = 'Capacidad pulmonar',
gtaAbility = true,
Current = 0,
RemoveAmount = 0,
Stat = "MP0_LUNG_CAPACITY",
icon = 'fas fa-heartbeat',
info = 'Description',
},
['Shooting'] = {
SkillLang = 'Tiro',
gtaAbility = true,
Current = 0,
RemoveAmount = 0,
Stat = "MP0_SHOOTING_ABILITY",
icon = 'fas fa-bullseye',
info = 'Description ',
},
['Driving'] = {
SkillLang = 'Conduccion',
gtaAbility = true,
Current = 0,
RemoveAmount = 0,
Stat = "MP0_DRIVING_ABILITY",
icon = 'fas fa-car-side',
info = 'Description',
},
['Wheelie'] = {
SkillLang = 'Wheelie',
gtaAbility = true,
Current = 0,
RemoveAmount = 0,
Stat = "MP0_WHEELIE_ABILITY",
icon = 'fas fa-motorcycle',
info = 'Description ',
},
['Flight'] = {
SkillLang = 'Vuelo',
gtaAbility = true,
Current = 0,
RemoveAmount = 0,
Stat = "MP0_FLYING_ABILITY",
icon = 'fas fa-plane',
info = 'Description ',
},
['Ilegal'] = {
SkillLang = 'Ilegal',
Current = 0,
icon = 'fas fa-scale-unbalanced-flip',
info = 'Description ',
},
['Cook'] = {
SkillLang = 'Cocina',
Current = 0,
icon = 'fas fa-kitchen-set',
info = 'Description ',
},
['Agricultura'] = {
SkillLang = 'Agricultura',
Current = 0,
icon = 'fas fa-wheat-awn-circle-exclamation',
info = 'Description ',
},
['Mining'] = {
SkillLang = 'Mineria',
Current = 0,
icon = 'fas fa-trowel',
info = 'Description ',
},
['Handyman'] = {
SkillLang = 'Manitas',
Current = 0,
icon = 'fas fa-hammer',
info = 'Description ',
},
}
Config.WeaponLvlCheck = true
Config.CheckWeaponSkill = 'Shooting'
Config.WeaponLvL = {
['WEAPON_PISTOL'] = {xp = 100 },
['WEAPON_BAT'] = {xp = 5.0 },
['WEAPON_ADVANCEDRIFLE'] = {xp = 30.0 },
}