-
Notifications
You must be signed in to change notification settings - Fork 1
/
cfg.lua
56 lines (53 loc) · 1.92 KB
/
cfg.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
Config = {
Debug = false,
Framework = 'qb', --[[
Valid options:
'esx' (es_extended)
'qb' (qb-core)
]]
Language = 'es', --[[
Valid options:
'es' (Español / Spanish)
'en' (Ingles / English)
'nl' (Holandés / Dutch)
'custom' (Custom)
]]
Command = {
Enabled = true,
Keybind = false,
Name = 'togglestreet',
DefaultKey = '' -- Input Parameter: https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/
},
Notification = 'qb' --[[
Valid options:
't-notify' -- https://github.com/TasoOneAsia/t-notify
'mythic_notify' -- https://github.com/wowpanda/mythic_notify
'okokNotify' -- https://forum.cfx.re/t/okoknotify-standalone-paid/3907758
'ox_lib' -- https://github.com/overextended/ox_lib
'skeexsnotify' -- https://github.com/Skeexs/skeexsNotify
'esx' -- Default esx
'qb' -- Default qbcore
]]
}
Locales = {
['es'] = { -- Spanish locale
['activated_command'] = 'Has activado el hud de las calles',
['desactivated_command'] = 'Has desactivado el hud de las calles',
['keybind_command'] = 'Desactivar/activar hud de las calles'
},
['en'] = { -- English locale
['activated_command'] = 'You have enabled the street hud',
['desactivated_command'] = 'You have disabled the street hud',
['keybind_command'] = 'Disable/enable street hud'
},
['nl'] = { -- Dutch locale
['activated_command'] = 'De straat namen zijn geactiveerd.',
['desactivated_command'] = 'De straat namen zijn gedeactiveerd.',
['keybind_command'] = 'Straat namen Activeren/Deactiveren'
},
['custom'] = { -- Custom locale
['activated_command'] = '',
['desactivated_command'] = '',
['keybind_command'] = ''
}
}