-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.lua
114 lines (109 loc) · 2.67 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
Config = {}
Config.AI = {
SpawnLocation = vector4(1992.083, 3055.646, 46.215, 187.6515),
MaxPeds = 5,
SpawnDistance = 30.0,
DespawnDistance = 50.0,
SpawnInterval = 480000,
SpawnChance = 75,
CheckInterval = 1000,
BarRadius = 20.0,
Behaviors = {
{name = "friendly", chance = 40},
{name = "aggressive", chance = 20},
{name = "dancer", chance = 40}
},
Models = {
friendly = {
"a_f_y_hippie_01",
"a_m_y_hipster_01",
"a_f_y_tourist_01",
"a_m_y_tourist_01"
},
aggressive = {
"a_m_y_mexthug_01",
"g_m_y_lost_01",
"g_m_y_lost_02",
"g_m_y_lost_03"
},
dancers = {
"a_f_y_hippie_01",
"a_f_y_clubcust_01"
}
}
}
Config.Props = {
{
model = "prop_tv_flat_01",
coords = vector4(1990.084, 3044.493, 47.581, 146.757)
}
}
Config.Dancers = {
{
model = "a_f_y_hippie_01",
coords = vector4(1989.028, 3045.406, 46.215, 323.9055),
animation = {
dict = "mini@strip_club@private_dance@part1",
name = "priv_dance_p1"
}
},
{
model = "a_f_y_hippie_01",
coords = vector4(1995.895, 3049.77, 46.215, 154.1287),
animation = {
dict = "mini@strip_club@private_dance@part1",
name = "priv_dance_p1"
}
}
}
Config.Budtender = {
model = "a_f_y_hippie_01",
coords = vector4(1983.189, 3053.467, 46.215, 242.9348),
animation = {
dict = "amb@world_human_aa_smoke@male@idle_a",
name = "idle_c"
},
prop = {
model = "p_cs_joint_01",
bone = 28422,
offset = vector3(0.0, 0.0, 0.0),
rotation = vector3(34.0, 13.0, 0.0)
}
}
Config.ShopItems = {
{
name = "joint",
price = 10,
label = "Joint",
icon = "fas fa-cannabis",
description = "Premium quality joint for relaxation"
},
{
name = "tosti",
price = 5,
label = "Tosti",
icon = "fas fa-bread-slice",
description = "Delicious grilled sandwich"
},
{
name = "dry_pscioblyn",
price = 15,
label = "Magic Mushrooms",
icon = "fas fa-mushroom",
description = "Experience a magical journey"
},
{
name = "xtcbaggy",
price = 20,
label = "XTC",
icon = "fas fa-pills",
description = "Party enhancer, use responsibly"
},
{
name = "whiskey",
price = 25,
label = "Whiskey",
icon = "fas fa-glass-whiskey",
description = "Premium aged whiskey"
}
}