-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathConfig.lua
93 lines (90 loc) · 4.57 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
Config = {
MenuHead = 'Dpemotes',
-- Change the language of the menu here!.
-- Note fr and de are google translated, if you would like to help out with translation / just fix it for your server check below and change translations yourself
-- try en, fr, de or sv.
MenuLanguage = 'en',
-- Set this to true to enable some extra prints
DebugDisplay = false,
-- Set this to false if you have something else on X, and then just use /e c to cancel emotes.
EnableXtoCancel = true,
-- Set this to true if you want to disarm the player when they play an emote.
DisarmPlayer= true,
-- Set this if you really wanna disable emotes in cars, as of 1.7.2 they only play the upper body part if in vehicle
AllowedInCars = false,
-- You can disable the (F3) menu here / change the keybind.
MenuKeybindEnabled = true,
MenuKeybind = 'F3', -- Get the button name here https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/
-- You can disable the Favorite emote KeyBinding here.
FavKeybindEnabled = true,
FavKeybind = 'NUMPAD4', -- Get the button name here https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/
-- You can change the header image for the f9 menu here
-- Use a 512 x 128 image!
-- NOte this might cause an issue of the image getting stuck on peoples screens
CustomMenuEnabled = false,
MenuImage = "https://i.imgyukle.com/2020/03/08/nwO7fe.png",
-- You can change the menu position here
MenuPosition = "right", -- (left, right)
-- You can disable the Ragdoll KeyBinding here.
RagdollEnabled = false,
RagdollKeybind = '', -- Get the button number here https://docs.fivem.net/docs/game-references/input-mapper-parameter-ids/keyboard/
-- You can disable the Facial Expressions menu here.
ExpressionsEnabled = true,
-- You can disable the Walking Styles menu here.
WalkingStylesEnabled = true,
-- You can disable the Shared Emotes here.
SharedEmotesEnabled = true,
CheckForUpdates = false,
-- Keybinds
KeyBinding = false,
}
Config.OpenKey = 'F3' -- Change this
Config.Languages = {
['en'] = {
['emotes'] = 'Animaciones',
['danceemotes'] = "🕺 Bailes",
['propemotes'] = "📦 Objetos",
['favoriteemotes'] = "🌟 Favoritos",
['favoriteinfo'] = "Selecciona una animación para hacerla favorita!.",
['rfavorite'] = "Reiniciar favoritas",
['prop2info'] = "❓ Las animaciones de objetos son ajustadas al final",
['set'] = "Seleccionar (",
['setboundemote'] = ") para ser tu animacion atado?",
['newsetemote'] = "~w~ es ahora tu animacion atada, presiona ~g~CapsLock~w~ para usarla.",
['cancelemote'] = "Cancelar animación",
['cancelemoteinfo'] = "~r~X~w~ cancela la animación corriente",
['walkingstyles'] = "Formas de caminar",
['resetdef'] = "Volver a por defecto",
['normalreset'] = "Normal (Reiniciar)",
['moods'] = "Moods",
['infoupdate'] = "Información",
['infoupdateav'] = "Información(Actualización)",
['infoupdateavtext'] = "",
['suggestions'] = "Suggestions?",
['suggestionsinfo'] = "",
['notvaliddance'] = "No es un baile válido.",
['notvalidemote'] = "No es una animación válida.",
['nocancel'] = "No hay animación para cancelar.",
['maleonly'] = "No puedes usar esta animación!",
['emotemenucmd'] = "Usa /emotemenu para abrir un menu.",
['shareemotes'] = "👫 Compartidos",
['shareemotesinfo'] = "Invita a una persona cerca para realizar la animación",
['sharedanceemotes'] = "🕺 Bailes compartidos",
['notvalidsharedemote'] = "no es una animación válida.",
['sentrequestto'] = "Enviar pregunta a ~y~",
['nobodyclose'] = "Nadie ~r~cerca~w~ de ti.",
['doyouwanna'] = "~y~Y~w~ para aceptar, ~r~L~w~ para rechazar (~g~",
['refuseemote'] = "Animación no aceptada.",
['makenearby'] = "Hacer que el jugador cercano lo haga",
['camera'] = "Presiona ~y~G~w~ para usar el flash de la cámara.",
['makeitrain'] = "Presiona ~y~G~w~ para que llueva.",
['pee'] = "Sostén ~y~G~w~ para orinar.",
['spraychamp'] = "Sostén ~y~G~w~ para batir la champagna",
['bound'] = "Ligador ",
['to'] = "a",
['currentlyboundemotes'] = " Animaciones ligadas:",
['notvalidkey'] = "no es una tecla válida.",
['keybinds'] = "🔢 Teclas",
['keybindsinfo'] = "Usar"
},
}