-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
69 lines (64 loc) · 1.65 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
---- Developer by git@camargo2019
config = {}
config.keyboard = "F5"
config.model = {
{model = "a_c_retriever", anim_name = "retriever"},
{model = "a_c_husky", anim_name = "retriever"},
{model = "a_c_rottweiler", anim_name = "retriever"},
{model = "a_c_shepherd", anim_name = "retriever"},
{model = "a_c_chop", anim_name = "retriever"},
{model = "a_c_pug", anim_name = "pug"},
{model = "a_c_poodle", anim_name = "pug"},
{model = "a_c_westy", anim_name = "pug"}
}
config.dogs = {
{
passport = 1002,
model = "a_c_husky",
owners = {15, 1131, 4, 3, 2, 1, 1045}
}
}
config.animations = {
{
name = "Latir Brabo",
id = "bark_angry",
dict = "@amb@world_dog_barking@base",
anim = "base",
loop = false
},
{
name = "Latir - Chama atenção",
id = "barking_draws_attention",
dict = "@amb@world_dog_barking@idle_a",
anim = "idle_a",
loop = false
},
{
name = "Latir de Pé - Chama atenção",
id = "bark_foot",
dict = "@amb@world_dog_barking@idle_a",
anim = "idle_b",
loop = false
},
{
name = "Latir e girar",
id = "bark_and_spin",
dict = "@amb@world_dog_barking@idle_a",
anim = "idle_c",
loop = false
},
{
name = "Se coçar",
id = "scratch_yourself",
dict = "@amb@world_dog_sitting@idle_a",
anim = "idle_a",
loop = false
},
{
name = "Deitar",
id = "throw",
dict = "@amb@world_dog_sitting@idle_a",
anim = "idle_c",
loop = true
}
}