-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathconfig.lua
More file actions
45 lines (45 loc) · 1.61 KB
/
Copy pathconfig.lua
File metadata and controls
45 lines (45 loc) · 1.61 KB
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
Config = {
Target = 'ox', -- 'ox' , 'qb'
FrameworkLoadinEvent = 'QBCore:Client:OnPlayerLoaded', --leave empty if dont need
peds = { -- some example peds i recomend creating them via your own script
-- ['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'
-- },
-- }
}
}