-
Notifications
You must be signed in to change notification settings - Fork 11
/
Config.lua
72 lines (64 loc) · 2.59 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
Config = {}
Config.distance = 1.5
Config.Car = "comet2"
Config.Plate = "ELECTRIC"
Config.framework = "esx" -- Esx or qbcore, easy to adapt to your framework.
Config.Pay = math.random(1000,4000)
Config.Account = 'bank' --This is where the money is go.
Config.postes = {
{prop = 'prop_streetlight_01', scenario = 'PROP_HUMAN_SEAT_BENCH', verticalOffset = -0.5, forwardOffset = 0.0, leftOffset = 0.0, angularOffset = 180.0},
{prop = 'prop_streetlight_01b', scenario = 'PROP_HUMAN_SEAT_BENCH', verticalOffset = -0.5, forwardOffset = 0.0, leftOffset = 0.0, angularOffset = 180.0},
{prop = 'prop_streetlight_03b', scenario = 'PROP_HUMAN_SEAT_BENCH', verticalOffset = -0.5, forwardOffset = 0.0, leftOffset = 0.0, angularOffset = 180.0},
{prop = 'prop_telegraph_01b', scenario = 'PROP_HUMAN_SEAT_BENCH', verticalOffset = -0.5, forwardOffset = 0.0, leftOffset = 0.0, angularOffset = 180.0},
}
Config.TiempoParaArreglar = 6 -- Segundos
Config.Locales = {
iniciarrepa = "PRESIONA ~b~Y~w~ PARA INICIAR LA REPARACION",
ponerescalera = "PRESIONA ~b~Y~w~ PARA COLOCAR LA ESCALERA",
sacarescalera = "PRESIONA ~b~Y~w~ PARA COGER LA ESCALERA",
espera = "Espera ~b~ ", -- ..seconds
tofinish = "~w~ segundos para terminar de reparar.",
startjob = "PRESIONA ~b~E~w~ PARA INICIAR EL TRABAJO",
jobiniciado = "Trabajo iniciado, ve a un estacionamiento.",
endjob = "PRESSIONE ~b~E~w~ PARA TERMINAR EL TRABAJO",
jobterminado = "Terminaste tu trabajo, te espero otro dia!",
saveescalera = "PRESIONA ~b~E~w~ PARA GUARDAR LA ESCALERA",
cogerescala = "PRESIONA ~b~E~w~ PARA COGER LA ESCALERA"
}
--ESX CLOTHES--
--Clothes
Config.Clothes = {
male = {
['tshirt_1'] = 0, ['tshirt_2'] = 0,
['torso_1'] = 122, ['torso_2'] = 0,
['arms'] = 1, ['pants_1'] = 5,
},
female = {
['tshirt_1'] = 15, ['tshirt_2'] = 0,
['torso_1'] = 4, ['torso_2'] = 14,
['arms'] = 4,
['pants_1'] = 25, ['pants_2'] = 1,
['shoes_1'] = 16, ['shoes_2'] = 4,
}
}
---qbcore clothes--
Config.Uniforms = {
['male'] = {
outfitData = {
['t-shirt'] = {item = 15, texture = 0},
['torso2'] = {item = 56, texture = 0},
['arms'] = {item = 85, texture = 0},
['pants'] = {item = 45, texture = 4},
['shoes'] = {item = 42, texture = 2},
}
},
['female'] = {
outfitData = {
['t-shirt'] = {item = 14, texture = 0},
['torso2'] = {item = 22, texture = 0},
['arms'] = {item = 85, texture = 0},
['pants'] = {item = 47, texture = 4},
['shoes'] = {item = 98, texture = 1},
}
},
}