forked from ST4LTH-Development/dialog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
43 lines (43 loc) · 1.37 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
Config = {
FrameworkLoadinEvent = 'QBCore:Client:OnPlayerLoaded',
peds = {
--[[ ['test'] = {
label = 'Talk to stranger',
icon = 'fa-solid fa-comment',
model = "csb_avon",
coords = vector3(165.48, 6612.81, 31.9),
heading = 170,
data = {
firstname = 'John',
lastname = 'Doe',
text = 'Hey bud, how ya doin.',
buttons = {
{
text = 'Im ok, how are you?',
data = {
text = 'Im cool rn, see you around!',
buttons = {
{
text = 'Se ya',
close = true
},
}
}
},
{
text = 'No sorry, im gonna leave',
close = true
},
}
}
}, ]]
['test2'] = {
label = 'Talk to the Mechanic',
icon = 'fa-solid fa-comment',
model = "mp_m_waremech_01",
coords = vector3(164.09, 6614.43, 31.92),
heading = 90,
event = 'con:mechanic'
},
}
}