-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.lua
121 lines (119 loc) · 5.14 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
119
120
121
-- Copyright (c) ESX Brasil
--
-- All rights reserved.
--
-- Even if 'All rights reserved' is very clear :
--
-- You shall not use any piece of this software in a commercial product / service
-- You shall not resell this software
-- You shall not provide any facility to install this particular software in a commercial product / service
-- If you redistribute this software, you must link to ORIGINAL repository at https://github.com/ESX-Brasil
-- This copyright should appear in every part of the project code
--
-- Website: www.esxbrasil.Website
-- Forum: forum.esxbrasil.website
Config = {}
Config.Locale = "br" -- Traduções disponives br, pl
--Você pode adicionar aqui Botões como botão do menu de inventário. Quando o jogador clicar nesse botão, a ação será cancelada.
Config.cancel_buttons = {289, 170, 168, 56}
options =
{
['seed_weed'] = {
object = 'prop_weed_01',
end_object = 'prop_weed_02',
fail_msg = 'Infelizmente, sua planta murchou!',
success_msg = 'Parabéns, você fez a colheita da planta!',
start_msg = 'Eu começei a cultivar uma planta.',
success_item = 'weed',
cops = 0,
first_step = 2.35,
steps = 7,
cords = {
{x = -427.05, y = 1575.25, z = 357, distance = 20.25},
{x = 2213.05, y = 5576.25, z = 53, distance = 10.25},
{x = 1198.05, y = -215.25, z = 55, distance = 20.25},
{x = 706.05, y = 1269.25, z = 358, distance = 10.25},
},
animations_start = {
{lib = 'amb@world_human_gardener_plant@male@enter', anim = 'enter', timeout = '2500'},
{lib = 'amb@world_human_gardener_plant@male@idle_a', anim = 'idle_a', timeout = '2500'},
},
animations_end = {
{lib = 'amb@world_human_gardener_plant@male@exit', anim ='exit', timeout = '2500'},
{lib = 'amb@world_human_cop_idles@male@idle_a', anim ='idle_a', timeout = '2500'},
},
animations_step = {
{lib = 'amb@world_human_gardener_plant@male@enter', anim = 'enter', timeout = '2500'},
{lib = 'amb@world_human_gardener_plant@male@idle_a', anim ='idle_a', timeout = '18500'},
{lib = 'amb@world_human_gardener_plant@male@exit', anim ='exit', timeout = '2500'},
},
grow = {
2.24, 1.95, 1.65, 1.45, 1.20, 1.00
},
questions = {
{
title = 'Você vê que sua planta está brotando, o que você deve fazer?',
steps = {
{label = 'Estou regando a planta', value = 1},
{label = 'Eu fertilizo a planta', value = 2},
{label = 'Aguardando', value = 3}
},
correct = 1
},
{
title = 'Pontos amarelos apareceram na minha planta, o que você deve fazer?',
steps = {
{label = 'Estou regando a planta', value = 1},
{label = 'Eu fertilizo a planta', value = 2},
{label = 'Aguardando', value = 3}
},
correct = 2
},
{
title = 'Sobre as folhas de suas plantas apareceu pó azul, o que você deve fazer?',
steps = {
{label = 'Eu quebro as folhas individuais', value = 1},
{label = 'Polvilhe as folhas com fertilizante', value = 2},
{label = 'Aguardando', value = 3}
},
correct = 3
},
{
title = 'Seus primeiros brotos apareceram na sua fábrica, o que você deve fazer?',
steps = {
{label = 'Estou regando a planta', value = 1},
{label = 'Eu os separo imediatamente', value = 2},
{label = 'Eu fertilizo a planta', value = 3}
},
correct = 1
},
{
title = 'Depois de molhar sua planta, folhas estranhas começaram a aparecer, o que você deve fazer?',
steps = {
{label = 'Estou regando a planta', value = 1},
{label = 'Eu fertilizo a planta', value = 2},
{label = 'Aguardando', value = 3}
},
correct = 2
},
{
title = 'Sua planta está quase pronta para ser cortada, o que você deve fazer?',
steps = {
{label = 'Estou regando a planta', value = 1},
{label = 'Eu fertilizo a planta', value = 2},
{label = 'Aguardando', value = 3}
},
correct = 1
},
{
title = 'Sua planta está pronta para a colheita, o que você deve fazer?',
steps = {
{label = 'Colete usando uma tesoura', value = 1, min = 5, max = 25},
{label = 'Colete com as mãos', value = 1, min = 10, max = 15},
{label = 'Cortar com umas tesouras de poda', value = 1, min = 2, max = 40}
},
correct = 1
},
},
},
}